Im getting a rather unexpected warning:
"Warning: 1 is not a MySQL result index in /www/htdocs/...php3 on line 49"
The lines in question are:
$sql_author = "SELECT * FROM AUTHORTRACKING WHERE ISBN = \"$isbn_c\" ";
$sql_author_statement = mysql_query($sql_author,$connection) or die ("Couldn't fetch author records.");
//Below Is Line 49
while ($row_d = mysql_fetch_array ($sql_author_statement))
{
...
}
Now, if I change 49 to simply:
$row_d = mysql_fetch_array($sql_author_statement);
Everything works wonderfully and there is no error. Now as far as I can tell, I've used the first example (the one with the error) before in the exact syntax, and everything works (except for this). Now my question is, why is the foremost not working while the previous is?
-G