InterviewSolution
Saved Bookmarks
| 1. |
State The Main Difference Between Mysql_fetch_array And Mysql_fetch_object ? |
|
Answer» Mysql_fetch_array will FETCH all the matching records, whereas mysql_fetch_object will only fetch the FIRST record that MATCHES the QUERY. Mysql_fetch_array will fetch all the matching records, whereas mysql_fetch_object will only fetch the first record that matches the query. |
|