Google News
logo
MySQL - Interview Questions
What is the difference between mysql_fetch_array and mysql_fetch_object?
Following are the differences between mysql_fetch_array and mysql_fetch_object:
 
mysql_fetch_array() : Returns a result row as an associated array or a regular array from database.
mysql_fetch_object :  Returns a result row as object from database.
Advertisement