$sql.= " where antique_mantel ='$antique_mantel' and (description like %$searchstring% or name like %$searchstring%)";
or break down searchstring into search words
something like
do while strtok loop
{
$searchwords=strtok of searchstring on " ";
}
// build sql
for all elementes in $searchwords
{
$sql=$sql." description like %$searchwords[counter]% or name like %$searchwords[counter]% or";
}
$finalsql="select * from whatever_table where ".$sql." order by whateveryouwant... etc"
runsql on finalsql
It will return all rows which contain the searchwords in the description and name fields
Obviously it is quasi nemonics so the code should be further developed.
Also, take a look at full text index and full text searches, really cool stuff.
Saludos
Gerardo