So, Here's what I've got:
$query .= " AND '$_POST[advsearch]' IN (search_words)";
Now let's say that advsearch is "bmx". search_words is a column in the database with the following data:
"bmx, freestyle, backflip"
It should return it, right? But no, it will only return it where the search_words is "bmx".
Where's my logic error?