Originally posted by dominant
Now i want to search on 2 or more columns simultaneously for the same word (different tables).
How could i do that?
you will need to spilt the search string with exploit() then do a array and loop... so basicly you search each word, keyword, phrase...
then you can add things to your SQL statement like
"SELECT title FROM Books WHERE Author LIKE '%".$author."%' AND Description LIKE '%".$author."%'"