[PHP] Return ODBC Results to an array

2001-02-13 Thread Karl J. Stubsjoen
Is there a way to return the results of a query straight into an array? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Return ODBC Results to an array

2001-02-13 Thread Ifrim Sorin
You can use mysql_fetch_array() for each row returned in the cursor. Sorin Ifrim - Original Message - From: Karl J. Stubsjoen <[EMAIL PROTECTED]> To: PHP Mailing List <[EMAIL PROTECTED]> Sent: Tuesday, February 13, 2001 7:32 PM Subject: [PHP] Return ODBC Results to an

Re: [PHP] Return ODBC Results to an array

2001-02-13 Thread Ifrim Sorin
For ODBC, the function is odbc_fetch_into(). Sorin Ifrim - Original Message - From: Karl J. Stubsjoen <[EMAIL PROTECTED]> To: PHP Mailing List <[EMAIL PROTECTED]> Sent: Tuesday, February 13, 2001 7:32 PM Subject: [PHP] Return ODBC Results to an array > Is there a wa

RE: [PHP] Return ODBC Results to an array

2001-02-13 Thread Andrew Hill
Karl J. Stubsjoen [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 13, 2001 12:33 PM > To: PHP Mailing List > Subject: [PHP] Return ODBC Results to an array > > > Is there a way to return the results of a query straight into an array? > > > -- > PHP General Mai