what is the difference between mysql_fetch_array() and
mysql_fetch_row()?
Answer Posted / tushal burungale
fetch_array:
fetch_array returns result in assoc array and also in
numeric array
e.g fetch_array:Array([0]=>Tushal)
fetch_row:
mysql_fetch_row returns result in numeric array only.
e.g
fetch_row:Array([0]=>Tushal[name]=>Tushal)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I know my xampp version?
Code to upload a file in PHP?
What is the delimiter syntax is PHP's default delimiter syntax
How can you make a connection with mysql server using php?
What does == mean in php?
What is $_ get?
How many data types are used by php?
Which of the delimiter is ASP style?
Why namespace is used in php?
How do you end a session in php?
What is php data type?
How to check an key is exists in array?
How will you calculate days between two dates in PHP?
How do you find the length of a string in php?
What is the difference between htmlentities() and htmlspecialchars()?