mysql is array in multiple columns
I have a string in the form $string = 'London,Paris,Birmingham' and I want to search multiple columns for occurences of these values. For example WHERE events.name, events.cities, events.counties IN (".($string).") Can someone recommend me a simple and short way of doing something like this. ...