Hi,
Is it possible to have multiple words like "Comedy Action SciFi" in a Table, then select one of the words ie
I have tried the above, Is there a like command ?Code:$result = mysql_query("SELECT * FROM `films` WHERE Extras = 'Comedy' ORDER BY `Title`");
OK Sorted It
Code:$result = mysql_query("SELECT * FROM `films` WHERE Extras LIKE '%Comedy%' ORDER BY `Title`");