How do you write a mysql select query that will look for a string in multiple columns? Here is a logical (incorrect) example:
SELECT COL1, COL2, COL5, COL32 FROM TABLE WHERE ???? LIKE "%$string%"
I would want it to look at the selected columns only.
And one more thing, how could I split the results up into pages with 10 records at a time?
Thanks!