Difference between mysql_fetch_array and mysql_fetch_row

Both are same but the difference is that in mysql_fetch_row we can retrieve values by using numeric asccociative example $name=$row[0], but in case of mysql_fetch_array we can retrive value by using table field name and numeric associative. Ex- $name=$row[0] and $name=$row['name'];

No comments: