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
What is move_uploaded_file in php?
Which parts of php are case sensitive?
What are the difference between abstract class and interface in oops?
How does php serialize work?
Explain php split() function.
What is php7?
Where to put php files in apache server?
What is the best way to test the strpos() return value in php?
Explain me how failures in execution are handled with include() and require() functions?
How to delete file in php?
What is the most common http method?
What is the difference between javascript and php?
Why json is used in php?
What is the use of header() function in php?
What is the definition of a session?