I'm learning php and mysql. When I read MySql from PHP-manual I realized that,
to return data from MySql in faster ways is in ordered.  
mysql_fetch_array() > mysql_fetch_row() > mysql_fetch_assoc()
mysql_fetch_array() is faster than mysql_fetch_row() and mysql_fetch_assoc().
Can I missing something?
THANKS.......