Hi

> I'm running thru a result set using fetch_assoc.  Now I want to run through 
> it again.
> 
> How?

  Save each row into an array first time around, then reset the array
pointer to the beginning, would be one way.

  Or assuming you're using the original MySQL functions, use
mysql_data_seek(0) to reset the internal result pointer, as one minute
scanning the function list in the documentation would tell you

Niel

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to