InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Mysql_fetch_object And Mysql_fetch_array? |
|
Answer» MYSQL FETCH object will collect FIRST single matching RECORD where mysql_fetch_array will collect all matching records from the table in an array. MySQL fetch object will collect first single matching record where mysql_fetch_array will collect all matching records from the table in an array. |
|