Hi all,
This is an error im recieving on server, BUT, no error on local
hostWarning: mysql_fetch_array(): supplied argument is not a valid MySQL result line 49
This is the code it is referring to....
<?php
$sql_query = "SELECT * FROM `indexinfo` WHERE id = '1'";
//store the queried cell in the variable
//named $result
$result = mysql_query($sql_query);
//display the queried cell
echo $row = mysql_fetch_array($result); // line 49
?>