I want to fetch one row in for cycle from a table, but can't find such php function. Does it exist?
I want to fetch one row in for cycle from a table, but can't find such php function. Does it exist?
Last edited by combatx; 12-31-2011 at 10:17 AM.
There is no such function, but you can still use mysql_result to sort this out. If you are after speeding it up, try using numeric offset instead of fieldname. http://php.net/manual/en/function.mysql-result.php
thank you. I use mysql_result, but its quite slow for large amount of for iterations. I am wondering if use of numeric offset will help.
Bookmarks