$results = mysql_query("SELECT column1, column2, date, time FROM table ORDER BY RAND() LIMIT 1");
$row_table = mysql_fetch_assoc($results);
For some odd reason this does not return data, however if I change it to:
$results = mysql_query("SELECT column1, column2, date, time FROM table ORDER BY RAND() LIMIT 2");
$row_table = mysql_fetch_assoc($results);
I get data. Any ideas?