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
Does php support polymorphism?
What is urlencode and urldecode in php?
What is the difference between rest and soap?
Do you know is it possible to extend the execution time of a php script?
Where is session value stored?
Tell me what are the __construct() and __destruct() methods in a php class?
Is apache needed for php?
What is preg_match?
How we get ip address of client, previous reference page etc?
Can I run php without xampp?
What is orm in php framework?
How can we calculate the similarity between two strings?
Where php basically used?
How to call php function in jquery?
What is difference between compile time and run time polymorphism?