103 |
- |
1 |
<?php echo showSectionHead($spTextDir['Semi Automatic Directory Submission Tool']); ?>
|
|
|
2 |
<form id='search_form'>
|
|
|
3 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="search">
|
|
|
4 |
<tr>
|
|
|
5 |
<th><?php echo $spText['common']['Website']?>: </th>
|
|
|
6 |
<td>
|
|
|
7 |
<?php echo $this->render('website/websiteselectbox', 'ajax'); ?>
|
|
|
8 |
</td>
|
|
|
9 |
<td width="20px" style="text-align: right;">
|
|
|
10 |
<input <?php echo empty($_SESSION['no_captcha']) ? "" : "checked"; ?> type="checkbox" name="no_captcha" id="no_captcha" onclick="checkDirectoryFilter('no_captcha', 'directories.php?sec=checkcaptcha', 'tmp')">
|
|
|
11 |
</td>
|
|
|
12 |
<th style="text-align: left;" nowrap="nowrap"><?php echo $spTextDir['Directories with out captcha']?></th>
|
|
|
13 |
<td width="20px" style="text-align: right;">
|
|
|
14 |
<input <?php echo empty($_SESSION['no_reciprocal']) ? "" : "checked"; ?> type="checkbox" name="no_reciprocal" id="no_reciprocal" onclick="checkDirectoryFilter('no_reciprocal', 'directories.php?sec=checkreciprocal', 'tmp')">
|
|
|
15 |
</td>
|
|
|
16 |
<th style="text-align: left;" nowrap="nowrap"><?php echo $spTextDir['Directories with out Reciprocal Link']?></th>
|
|
|
17 |
</tr>
|
|
|
18 |
<tr>
|
|
|
19 |
<th><?php echo $spText['common']['Pagerank']?>: </th>
|
|
|
20 |
<td>
|
|
|
21 |
<select name="pagerank">
|
|
|
22 |
<option value="">-- <?php echo $spText['common']['Select']?> --</option>
|
|
|
23 |
<?php
|
|
|
24 |
for ($i=0; $i<=10; $i++) {
|
|
|
25 |
?>
|
|
|
26 |
<option value="<?php echo $i?>" <?php echo $selected?>>PR <?php echo $i?></option>
|
|
|
27 |
<?php
|
|
|
28 |
}
|
|
|
29 |
?>
|
|
|
30 |
</select>
|
|
|
31 |
</td>
|
|
|
32 |
<th><?php echo $spText['common']['lang']?>:</th>
|
|
|
33 |
<td>
|
|
|
34 |
<select name="lang_code">
|
|
|
35 |
<option value="">-- <?php echo $spText['common']['Select']?> --</option>
|
|
|
36 |
<?php
|
|
|
37 |
foreach ($langList as $langInfo) {
|
|
|
38 |
$selected = ($_SESSION['dirsub_lang'] == $langInfo['lang_code']) ? "selected" : "";
|
|
|
39 |
?>
|
|
|
40 |
<option value="<?php echo $langInfo['lang_code']?>" <?php echo $selected?>><?php echo $langInfo['lang_name']?></option>
|
|
|
41 |
<?php
|
|
|
42 |
}
|
|
|
43 |
?>
|
|
|
44 |
</select>
|
|
|
45 |
</td>
|
|
|
46 |
<td align='left' colspan="2">
|
|
|
47 |
<a onclick="scriptDoLoadPost('directories.php', 'search_form', 'subcontent')" href="javascript:void(0);" class="actionbut">
|
|
|
48 |
<?php echo $spText['button']['Show Details']?>
|
|
|
49 |
</a>
|
|
|
50 |
</td>
|
|
|
51 |
</tr>
|
|
|
52 |
</table>
|
|
|
53 |
</form>
|
|
|
54 |
<div id='subcontent'>
|
|
|
55 |
<p class='note left'><?php echo $spTextDir['selectwebsiteproceed']?>!</p>
|
|
|
56 |
</div>
|