Jump to content

advancing the pointer in a mysql_fetch_array while loop


niche

Recommended Posts

How do I advance the pointer to the next row within a while loop using mysql_fetch_array?

while ($row = mysql_fetch_array($result)) {  $zip11 = $row['postnet ip'];  include "postnet2.php";  //SOME MORE PROCESSING   //I NEED TO ADVANCE THE POINTER HERE TO THE NEXT ROW  //SOME MORE PROCESSING   }  

Link to comment
Share on other sites

$row = mysql_fetch_array($result); when I need to advance to the next row in the middle of a while loop.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...