I have a query result and I display on screen using mysql_fetch_assoc().
Can I somehow reset this function so I can iterate through the same query result and display it on screen again (I do need to do that lol)
Thanks a lot, elenev
Yes, you can reset it like you would reset any array - php reset function
Of course, mysql_fetch_assoc uses a resource and not an array so resetting it is not much help.
As strange as it may sound, the manual can often answer these sort of questions: http://www.php.net/manual/en/function.mysql-data-seek.php