blob: 656943f9c2a24c773cf6fcd5d6495385cac8ef33 (
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
|
<HTML>
<HEAD>
<TITLE>Customer Search</TITLE>
</HEAD>
<BODY>
<CENTER>
<H1>Customer Search</H1>
</CENTER>
<HR>
<FORM ACTION="cust_main.cgi" METHOD="post">
<INPUT TYPE="checkbox" NAME="last_on"> Search for <B>last name</B>:
<INPUT TYPE="text" NAME="last_text">
using search method(s): <SELECT NAME="last_type" MULTIPLE>
<OPTION SELECTED>Fuzzy
<OPTION>Exact
</SELECT>
<P><INPUT TYPE="checkbox" NAME="company_on"> Search for <B>company</B>:
<INPUT TYPE="text" NAME="company_text">
using search methods(s): <SELECT NAME="company_type" MULTIPLE>
<OPTION SELECTED>Fuzzy
<OPTION>Exact
</SELECT>
<P><INPUT TYPE="submit" VALUE="Search"> Note: Fuzzy searching can take a while. Please be patient.
</FORM>
<HR>Explanation of search methods:
<UL>
<LI><B>Fuzzy</B> - Searches for matches that are close to your text.
<LI><B>Exact</B> - Finds exact matches only, but much faster than the other search methods.
</UL>
</BODY>
</HTML>
|