I'm using mysql_fetch_assoc to return results from a query from mysql.
I have a while loop which goes through the results of a query - it is nested within another while loop so when a full cycle of the main while loop has completed I want to so back to the start of nested loop.
In ASP I could do this with recordset.MoveFirst - is there a similar method with the mysql functions available in PHP ? I'm using mysql_fetch_assoc to return the results from the DB.
Thanks