my url is:
http://bathtab.co.uk/
at the moment, the search results title tag is always: The UK Property Search Engine
what i want is to make it dynamic, so when you search for london, it'll display in the title the place as well as property type and either rent/buy.
thanks!
some source code:
<form action="http://bathtab.co.uk/search.php" method="get">
<table align="center" cellspacing="0" style="font-family:arial; border:0px solid #888; padding:3px">
<tr>
<td><select name="listing_type">
<option value="buy" selected>For Sale</option>
<option value="rent">To Rent</option>
</select></td>
<td><input name="place_name" value="" size="25"></td>
<td><select name="property_type">
<option value="all">House or Flat</option>
<option value="flat">Flat</option>
<option value="house">House</option>
</select></td>
<td><input type="submit" value="Search"></td>
</tr>
<tr>
<td> </td>
<td colspan="2" align='left' style='font-size:10px; color:#888'>Location e.g. Bath</td>
</tr>
</table>
</form>