what is the difference between mysql_fetch_array() and
mysql_fetch_row()?
Answer Posted / 585858
mysql_fetch_array()works as an associative array i.e. just
use the field name specified in your database to access the
values while mysql_fetch_row() returns the value of a
single field in a particular row if you r going to specify
the array's index which starts from '0'.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How to access a Static Member of a Class in PHP?
Explain PHP?
What is use of preg_replace in php?
Explain about require and include function?
What is the difference between require_once and require in php?
What is $row in php?
What are the encryption functions in php?
What is the difference between php4 and php5?
Which array function checks if the particular key exists in the array?
What is the use of mysql_real_escape_string() function?
What is framework in php?
Please explain is it possible to use com component in php?
How to randomly retrieve a value from an array?
Does php support multiple inheritances?
How can you pass a variable by reference?