blob: 694dbf25994fc764f4fc915df76132aebb2323ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<form method="post" action="search.php">
<table align="center">
<tr align="left">
<td>
Search ccan repository:
</td>
<td>
<p><input name="searchtext" type="text"/></p>
</td>
<td>
<p> <select name="searchmenu">
<option value="all">All </option>
<option value="author">Author </option>
<option value="module">Module title </option>
</select>
</p>
</td>
</tr>
<tr align="center">
<td></td>
<td align="right">
<input type="submit" name="search" value="Search"/>
</td>
<td align="left"><a href=search.php?disp=all>Display all</a></td>
</tr>
</table>
<table align="center">
<tr align="left">
<?php
for ($i = "a"; $i != "aa"; $i++) {
echo '<td><a href=search.php?disp='. $i . '>'. $i .'</a></td>';
}
?>
</tr>
</td>
</tr>
</table>
</form>
|