Hi I've have been doing at bit of PHP at home and have been going OK until today.
For some reason this:
$result = mysql_query("SELECT * FROM films WHERE title='Annie Hall'");
will come up with nothing when I try to display the results but this:
$result = mysql_query("SELECT title, director, year, rating, comment FROM films WHERE title = 'Annie Hall'");
works perfectly. It's not really any more trouble to use the second one but it seems that the first should work and I would like to figure it out now rather than just shrugging it off and continuing with the less elegant solution.