what is the difference between mysql_fetch_array() and
mysql_fetch_row()?
Answer Posted / vijay kumar singhal
wrong, instead both returns all the rows from table. The
difference between them is fetch_array return result in
assoc array as well as numeric array and you can also
specify which specific type of array you want by providing
second paramter to the function while fetch_row return
result in numeric array only.
fetch_row : Array( [0]=>vijay)
fetch_array : Array([0]=>vijay [name]=>vijay)
| Is This Answer Correct ? | 131 Yes | 13 No |
Post New Answer View All Answers
What are Routines?
Is not null mysql?
What is orm in php framework?
What is csrf token and how will you add csrf token in ajax?
List some sorting functions in php?
What is oops php?
How do you check is php not empty?
Is age interval or ordinal?
Why is overriding runtime?
Which functions are used to remove whitespaces from the string?
How to write comment in php?
What is super () python?
What is the difference between query and inquiry?
What are php variables?
How to remove the new line character from the end of a text line in php?