Adding a search box

M

Mary Ann

Does anyone know how I can can obtain and add a real estate search box? I'm
creating a web site (FP 2003) with real estate information and would like to
add a search box that people can enter their criteria and what there looking
for comes up.

Thank you,
 
S

Stefan B Rusynko

Would require a Database and server side code to search the database

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Does anyone know how I can can obtain and add a real estate search box? I'm
| creating a web site (FP 2003) with real estate information and would like to
| add a search box that people can enter their criteria and what there looking
| for comes up.
|
| Thank you,
 
H

Haydar TUNA

Hi,
You can use following HTML code for google search your domain.:)

<form action="http://www.google.com/search" method="get" target="_blank">
<input name="q" type="text" class="formelement" id="q" size="15" />
<input name="Submit" type="submit" value=" Search " />
<input type="hidden" name="sitesearch" value="yourdomain.com" />
</form>
 
Top