So I made a highscore sheet for a game I made. and almost everything works. The problem is that the table doesn’t want to load. It outputs this: mysql_result() expects parameter 1 to be resource, boolean given in /home/troller1/public_html/functions.php on line 334
That means there’s an error with your query. mysql_query() will return boolean false instead of a result resource if it fails. Before the mysql_result, put this line:
[php]echo mysql_error();[/php]