i have a search field where the user types a keyword
for example "nokia 6600"
i have a table, with field for the brand name "nokia" and field for the modelname "6600"
so i guess i need first to join the values of the brand name and model name fields, and then do a search on them with
LIKE %nokia%6600%
how to do it?
p.s.
currently i'm doing search only for the model name using this line
$result=mysql_query("SELECT markaid, MarkName, modelid, ModelName, ModelPic, telinfo, cena, grad, kontakti, date FROM $table
WHERE ModelName LIKE '%$keyword%';");