Thanks!
SOUNDEX does not work for me, but SOUNDS LIKE does. It doesn't really work well.
For example, if I use the following code. No matter what I enter in the text field, it returns all of my listings and the isbn #'s aren't anything alike.
$sql = "SELECT isbn, artist_name, album_title, description, track_list, price, image FROM lounge WHERE isbn SOUNDS LIKE $keywords";
$rows = $db->getAll($sql);
If I use the following code, I get a DB Error: no such field when I enter one word. I get a DB Error: syntax error if I enter two words. If I enter a number, it returns nothing.
$sql = "SELECT isbn, artist_name, album_title, description, track_list, price, image FROM lounge WHERE artist_name SOUNDS LIKE $keywords";
$rows = $db->getAll($sql);
Is there an issue with my query that I am missing?
Thanks!