[PHP] reset a resource?

2006-06-08 Thread sam
After I've looped through a resource do I have to run the query again to load up 'mysql_fetch_assoc' or is there some kind of reset function I can't find? $q = SELECT * FROM table; $s = mysql_query($q, $pe) or die(mysql_error()); while ($row_s = mysql_fetch_assoc($s)) { echo $i++;

Re: [PHP] reset a resource?

2006-06-08 Thread Brad Bonkoski
Perhaps this will help: http://www.php.net/manual/en/function.mysql-data-seek.php -brad sam wrote: After I've looped through a resource do I have to run the query again to load up 'mysql_fetch_assoc' or is there some kind of reset function I can't find? $q = SELECT * FROM table; $s =

Re: [PHP] reset a resource?

2006-06-08 Thread Ben Liu
sorry, mysql_data_seek() On 6/8/06, sam [EMAIL PROTECTED] wrote: After I've looped through a resource do I have to run the query again to load up 'mysql_fetch_assoc' or is there some kind of reset function I can't find? $q = SELECT * FROM table; $s = mysql_query($q, $pe) or