Forum Moderators: coopster
$result = mysql_query("......") or die(mysql_error());
$x = mysql_fetch_row($result);
If you want to keep it the way you have it, it should look more like this:
$x = mysql_fetch_row(mysql_query("......")) or die(mysql_error());