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

}

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

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.