I am trying to do a muliple search of a database.
total of 5 fields
i am trying
mysql_select_db($db_name,$dblink)
or die(mysql_error());
$sql = mysql_query("SELECT * FROM clients WHERE town = '%location%' AND style = '%ptype%' ",$dblink)
or die(mysql_error());
but it just returns a blank page when i enter the search term.
a term i know that should pull back resuults
i am making sure i can get 2 variables to work before doing the 5
any ideas why