<form method=POST action="http://www.bizweb.com/search.phtml?op=search">
This is the simplest, most basic search. Companies will be listed that
have all search terms entered.
<input type="text" name="pattern" size=30> <input type="submit" value="Search BizWeb"><br>
</form>
Add the two radio buttons shown above to allow selecting searches for any
word or all words
<form method=POST action="http://www.bizweb.com/search.phtml?op=search">
<input type="text" name="pattern" size=30> <input type="submit" value="Search BizWeb"><br>
<input type="radio" name="AndOr" value="Or" checked>May contain <b>Any</b> search words<br>
<input type="radio" name="AndOr" value="And">Must contain <b>All</b> search words
</form>
Set the hidden form variable "ReturnURL" to the URL you would like the
search page to point back to. Set the hidden form variable "ReturnName" to
the text you would like the return link to display.
<form method=POST action="http://www.bizweb.com/search.phtml?op=search">
<input type="text" name="pattern" size=30> <input type="submit" value="Search BizWeb"><br>
<input type="radio" name="AndOr" value="Or" checked>May contain <b>Any</b> search words<br>
<input type="radio" name="AndOr" value="And">Must contain <b>All</b> search words
<input type="hidden" name="ReturnURL" value="http://www.mysite.com/">
<input type="hidden" name="ReturnName" value="MySite">
</form>