Re: [PHP-DB] mysqli_result() ?

2004-09-18 Thread Georg Richter
Am Sa, den 18.09.2004 schrieb Chris um 0:50: Hi, is there any MySQLi equivalent to the mysql_result function? Nope. mysql_result is very slow, so we didn't implement it. Use mysql_fetch_row instead and use the row offsets to retrieve the content of a column. See also

Re: [PHP-DB] mysqli_result() ?

2004-09-18 Thread Chris
Ok thanks, I appreciate the response. Chris Georg Richter wrote: Am Sa, den 18.09.2004 schrieb Chris um 0:50: Hi, is there any MySQLi equivalent to the mysql_result function? Nope. mysql_result is very slow, so we didn't implement it. Use mysql_fetch_row instead and use the row offsets to