How come this:
$query = "SELECT * FROM nesroms order by RAND() LIMIT 1";
$result = mysql_query($query);
$row = mysql_fetch_array($result);
Shows up an ERROR when I use it? 2 days ago it didnt, now all the sudden, it says:
Warning: Supplied argument is not a valid MySQL result resource in 1atop.php on line 279
Is there another way to select a random row from a DB?
Thanx in advance
