I have followed the mod and displays the page, but i get a error which is:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in D:\maxking\shisha\shopcart\include\func.php on line 5891
Now looking at the line the error is:
while ($query_result= mysql_fetch_array($result))
I am using x-cart 4.18
The full file that i put into the include/func.php is:
Code:
function create_array($query)
{
$result= mysql_query($query);
$array_final = array();
while ($query_result= mysql_fetch_array($result))
array_push($array_final, $query_result);
return ($array_final);
}
As described in the installation instructions.