Re: [PHP] reusing MySQL results -- resetting mySQL pointer with mysql_data_seek()

2001-04-04 Thread Juan C. Borrero
Nope. Mysql_data_seek($result,0) and it is. - Original Message - From: "Daevid Vincent" <[EMAIL PROTECTED]> To: "Mark Roedel" <[EMAIL PROTECTED]>; "George Wright" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, April 04,

RE: [PHP] reusing MySQL results -- resetting mySQL pointer with mysql_data_seek()

2001-04-04 Thread George Wright
TECTED]] > Sent: Wednesday, April 04, 2001 4:18 PM > To: Mark Roedel; George Wright; [EMAIL PROTECTED] > Subject: RE: [PHP] reusing MySQL results -- resetting mySQL > pointer with > mysql_data_seek() > > > Just my two cents here... > > I could be mistaken, but wouldn&

RE: [PHP] reusing MySQL results -- resetting mySQL pointer with mysql_data_seek()

2001-04-04 Thread Daevid Vincent
Message- > From: Mark Roedel [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 04, 2001 7:52 AM > To: George Wright; [EMAIL PROTECTED] > Subject: RE: [PHP] reusing MySQL results > > > > -Original Message- > > From: George Wright [mailto:[EMAIL PROTECTED]]

RE: [PHP] reusing MySQL results - SOLVED

2001-04-04 Thread George Wright
sday, April 04, 2001 10:52 AM > To: George Wright; [EMAIL PROTECTED] > Subject: RE: [PHP] reusing MySQL results > > > > -Original Message- > > From: George Wright [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, April 04, 2001 9:35 AM > > To: '[EMA

RE: [PHP] reusing MySQL results

2001-04-04 Thread Mark Roedel
> -Original Message- > From: George Wright [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 04, 2001 9:35 AM > To: '[EMAIL PROTECTED]' > Subject: [PHP] reusing MySQL results > > > Hi All, > > I have a page with two forms. Both forms have drop-down option > lists that are populated

RE: [PHP] reusing MySQL results

2001-04-04 Thread Altunergil, Oktay
use mysql_data_seek() just like you'd use reset() on an array. from php.net : "mysql_data_seek() moves the internal row pointer of the MySQL result associated with the specified result identifier to point to the specified row number. The next call to mysql_fetch_row() would return that row. "