I have a users table in MySQL and would like a search by name. Right now I have the following code:
$words = explode(" ", $search); $i = 0; while($words[i] != null) { //Query where name LIKE words[i] }