[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 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]

Reply via email to