I have been reading a lot of posts on these forums and it appears that the most basic MySQL search technique happens to be
$search = mysql_query("SELECT * FROM `table` WHERE `fieldName` LIKE'%$criteria%'");
Now is there a way to search the whole table for your search term instead of an individual field, or would I have to do multiple queries?
Also, what are some other techniques for more complex searching scripts. I know a lot of string functions and can pretty much figure out most anything over time, so does anybody have any links or ideas to point me in the right direction. Thanks.