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 the functions used in php?
What is strlen php?
What is csrf token in php?
What is the delimiter syntax is PHP's default delimiter syntax
What are the 5 types of variables?
How to download and install php on windows?
Tell me what library is used for pdf in php?
What does $globals means?
What is parent __construct ();?
Can you give example for trait in php?
Is empty function c++?
What is new keyword in php?
How can I convert ereg expressions to preg in php?
What is the purpose of the php empty function?
When to use get and post request?