-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.inc
56 lines (44 loc) · 1.01 KB
/
search.inc
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<h1>Search</h1>
<p>Use this form to search the membership list. <em>Remember, if you select the "like" operator, you will need to include a percent sign (%) in your query.</em></p>
<center>
<table>
<form action=./ method=post>
<input type=hidden name=cmd value=search>
<tr>
<td colspan=2 bgcolor=silver align=center><b>Search form</b></td>
</tr>
<tr>
<td align=right>Field</td>
<td>
<select name=search_field>
<option value=last_name>last name
<option value=first_name>first name
<option value=email>email
<option value=city>city
<option value=zip_code>zip code
<option value=occupation>occupation
<option value=employer>employer
<option value=member_id>member ID
</select>
</td>
</tr>
<tr>
<td align=right>Operator</td>
<td>
<select name=search_operator>
<option value="=">is
<option value=like>like
</select>
</td>
</tr>
<tr>
<td align=right>Query</td>
<td><input name=search_string></td>
</tr>
<tr>
<td></td>
<td><input type=submit name=submit value=Submit> <input type=reset></td>
</tr>
</form>
</table>
</center>