This is a simple question for PHP users. The reason I couldn\'t get the the exact difference between mysql_fetch_array() and mysql_fetch_row() in P
mysql_fetch_array()
mysql_fetch_row()
As the manual says: mysql_fetch_array() can return an associative array depending on defaults and its second parameter (MYSQL_ASSOC, MYSQL_NUM, or MYSQL_BOTH).
MYSQL_ASSOC
MYSQL_NUM
MYSQL_BOTH
While mysql_fetch_row() always returns an indexed array.