mysql_fetch_array()
Page 1 of 1
mysql_fetch_array()
#3
Re: mysql_fetch_array()
Posted 02 May 2009 - 05:32 PM
Best guess is that your query failed. Run your query like this:
And report back to us what is the reported error.
$query = "SELECT * FROM whatever";
$result = mysql_query($query) or die("Query $query failed: " . mysql_error());
while ($row = mysql_fetch_array($result))
{
// ...
}
And report back to us what is the reported error.
Page 1 of 1

Start a new topic
Add Reply





MultiQuote

| 


