Hi!
I want to loop a resultset from mysql 3 times:
I have
while (list ($roomid) = mysql_fetch_array($qual_rooms))
{
echo $roomid;
}
I want to use a for loop outside the while loop, but how do I get to start from top of the resultset/array the second time and third time?
Best regards,
Tom-Erik