Lochness30
Programmer
Just wondering, if I have a block of code to go through a list of records. Say
Is there a way to reset the list, so I can go through it again? Or do I have to reissue the original select statement??
Thanks
Code:
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
echo $row["userstatus"];
}
Thanks