I am using mysql 4.1.11 and PHP 5 In one of my php scripts I make 2 successive calls of mysql_fetch_row using the same Mysql Result. In the first call the desired result is achieved, but in the second one it isn't.
I have something like
while($someArr=mysql_fetch_row($result))
{
...some code.
}
The first time I call mysql_fetch_row , the code inside the while loop gets
executed, but not the second time. What is the reason behind that.
--
-Mahmoud Badreddine
http://www.spreadfirefox.com/
