hi there, i have this small problem...
after quering the mysql, i get the $result.
then i have this code:
while (myArray=mysql_fetch_array($result)
{
.
.
.
}
up to here all is fine.
but, now i need the same results over again, its like i need to re-read the memory block of the $result again... how do i do it?
now the problems r that i cant re-query, and i cant make a two dimentional array here... therefor all i need is a way to get the same resault i got in the while section, when the value of $result is the same and the same script is still running...
help