25.06.2011, 10:55
Quote:
Could anyone tell me how to fetch multiple rows using this plugin?
|
Код:
mysql_store_result( mysql_connection_id ); for( new index = 0; index < mysql_num_rows( mysql_connection_id ); index++ ) { new row[ 256 ]; mysql_fetch_row_format( row, "|", mysql_connection_id ); // Whatever you want to do with this row. } mysql_free_result( mysql_connection_id );