tags:

views:

32

answers:

1

mysql_fetch_object() or mysql_fetch_array() which is better and why?

+4  A: 

Both are good. Choose what you like more - objects or arrays.

It's even better to use PDO or mysqli instead of mysql extension.

Naktibalda