Quote:
Originally Posted by Brew
When looking at the Board Management page I get this at the top of the page:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /mods.php on line 27
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /mods.php on line 40

|
Okey.. If you have prefix for tables like vb_something, then you should use like that:
PHP Code:
$smodquery = "SELECT * FROM prefix_user WHERE usergroupid='5'";
PHP Code:
$modquery = mysql_query("SELECT * FROM prefix_moderator");
and also
PHP Code:
$modquery_2 = mysql_query("SELECT * FROM prefix_user WHERE userid='$useridd'");
Your sincerely.