Hi all
I have nuke and when i delete old story i faced this two problems :
my first problem is this Warning :
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/alnassr/public_html/includes/sql_layer.php on line 238
the codes in the line 238 is :
function sql_num_rows($res)
{
global $dbtype;
switch ($dbtype) {
case "MySQL":
$rows=mysql_num_rows($res);
return $rows;
break;;
line 238 is $rows=mysql_num_rows($res);
====
my secend problem is this Warning :
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/alnassr/public_html/includes/sql_layer.php on line 342
the codes in the line 342 is :
function sql_fetch_array(&$res, $nr=0)
{
global $dbtype;
switch ($dbtype)
{
case "MySQL":
$row = array();
$row = mysql_fetch_array($res);
return $row;
break;;
the line 342 is $row = mysql_fetch_array($res);
waiting for your help thanks