Thanks for your quick response :)
Ok I entered the Apartment OR House OR Bungalow into my option tag like so
<select name="type" id="type">
<option value="Apartment">Apartment</option>
<option value="House">House</option>
<option value="Bungalow">Bungalow</option>
<option value="Apartment OR House OR Bungalow">Any</option>
</select>
The output string is
http://www.wilkins-hammond.com/show_...&search=Search
I still get no matches...
Any other ideas?
When I defined the variables in the Dreamweaver Recordset dialogue box, it asks for a default value, which tutorials say to put -1
Could this be stopping me from being able to an option like this
<select name="type" id="type">
<option value="Apartment">Apartment</option>
<option value="House">House</option>
<option value="Bungalow">Bungalow</option>
<option value="">Any</option>
</select>
I guess if I don't submit a value, it uses the default (-1) which of course matches nothing in the database. Is there another value I could use that would match everything?
Thanks again
Rich...:)