Re: [PHP] Fetch_row

2001-04-12 Thread John Keith
[EMAIL PROTECTED] (Mike P) writes: > Can I use Mysql fetch_row to specify which row i want to get? > Like---$row[5]=mysql_fetch_row($result) ? You might try: // move row pointer to 5th row mysql_data_seek ($result, 4); // fetch current row list (...) = mysql_fetch_row ($result); -- PHP Ge

Re: [PHP] Fetch_row

2001-04-12 Thread Steve Edberg
At 2:17 AM + 4/13/01, Mike P wrote: >Can I use Mysql fetch_row to specify which row i want to get? >Like---$row[5]=mysql_fetch_row($result) ? >Mike P >[EMAIL PROTECTED] > Are you talking about a specific row in the mySQL result set? If so, use the mysql_result() function. However, this funct