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 does == mean in php?
can we swap two different string using php for example:-- before swapping:-- 1 string :-hello friend, 2 string :-my dear, after swapping that strings will be: 1.hello dear, 2.my friend.
Is php front end or back end?
How do you check if an arraylist is empty?
What are the functions to be used to get the image's properties (size, width and height)?
Why should I learn php?
What are the 3 types of sessions?
How escape single quotes php?
Where is session id stored?
What type of errors can be occurred in php?
Can we run php in apache tomcat?
Where is php code written?
What is list function with their uses.
Is php a framework?
Difference between array_combine and array_merge?