Login
Remember
Register
Ask a Question
What is the difference between mysql_fetch_array and mysql_fetch_object?
0
votes
asked
Jan 14, 2024
in
Sql
by
AdilsonLima
What is the difference between mysql_fetch_array and mysql_fetch_object?
mysql-intervoew-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14, 2024
by
AdilsonLima
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.
...