Hello CF's
i would be really grateful if someone could help me fix the errors
in a script i have
errors im getting after install
PHP Code:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/admin_dealer/dhdealer.co.cc/index.php on line 42
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/admin_dealer/dhdealer.co.cc/index.php on line 45
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/admin_dealer/dhdealer.co.cc/index.php on line 48
File where the errors are occurring
PHP Code:
#
<?
#
$sql = "select count(*) from moneymembers where active=1";
#
$result = mysql_query($sql);
#
$rs = mysql_fetch_row($result);
#
$sql2 = "select sum(DAmount) from moneypool where approved=1";
#
$result2 = mysql_query($sql2);
#
$rs2 = mysql_fetch_row($result2);
#
$sql6 = "select sum(Amount) from wtransaction where approved=1";
#
$result6 = mysql_query($sql6);
#
$rs6 = mysql_fetch_row($result6);
#
?>
*Lines 39 - 49
Thank you