How to reset mysql pointer back to the first row in PHP?

u2anil

New Member
\[code\]while($row = mysql_fetch_array($result)){ echo $row['id'];}\[/code\]If I use the above code two times consecutively, the row does not get printed twice.How to reset it?
 
Back
Top