I have a $user_location variable which contains a current user city, and need to compare that variable with a database query to check if $user_location is LIKE the $item_coverage ($item_coverage is the result of the query).
$item_coverage contains a list of cities separated by a comma "," and $user_location too.
Just need to walk through all words separated by comma and contained in $item_coverage and check if one of those words match $user_location, if one-word match {give some result} else if don't {give another result}