Hey, I have quite a few columns, and I'm in the process of making a search bar, but I want to have it to so that when the database is queried instead of having to say:
mysql_query("SELECT * FROM table WHERE column1 = '$search' OR column2 = '$search' OR column3 = '$search' OR etc etc...");
I want to just be able to say:
mysql_query("SELECT * FROM table WHERE any of the columns = '$search'");
Is that possible, or do I have to list every column?

