Add BizWeb Search To Your Web Page

You can add a BizWeb search to your web page! Pick one of the examples below, cut the HTML, and paste it into your web page. That's all there is to it.

Basic Search

 

<form method=POST action="http://www.bizweb.com/search.phtml?op=search">
<input type="text" name="pattern" size=30>&nbsp;<input type="submit" value="Search BizWeb"><br>
</form>

This is the simplest, most basic search. Companies will be listed that have all search terms entered.


Advanced Search

 
May contain Any search words
Must contain All search words

<form method=POST action="http://www.bizweb.com/search.phtml?op=search">
<input type="text" name="pattern" size=30>&nbsp;<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>

Add the two radio buttons shown above to allow selecting searches for any word or all words


Advanced Search with a return link to your site

 
May contain Any search words
Must contain All search words

<form method=POST action="http://www.bizweb.com/search.phtml?op=search">
<input type="text" name="pattern" size=30>&nbsp;<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>

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.