InterviewSolution
| 1. |
What Are The Differences Between Mysql_fetch_array(), Mysql_fetch_object(), Mysql_fetch_row()? |
|
Answer» Mysql_fetch_object is used to retrieve the result from the DATABASE as objects while mysql_fetch_array returns result as an ARRAY. This will allow access to the data by the field names. Mysql_fetch_object is used to retrieve the result from the database as objects while mysql_fetch_array returns result as an array. This will allow access to the data by the field names. |
|