I'm trying to do the following:
while ($row = mysql_fetch_assoc($result){
...
}
...
while ($row2 = mysql_fetch_assoc($result){
...
}
but it doesn't work. The commands within the 2nd loop never run. I'm guessing that this has to do with the pointer of the mysql function, which has to be reset. If so, how to do this?