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
Fetch row returns a numerical array for current entry
http://www.php.net/manual/en/function.mysql-fetch-row.php
Fetch array will by default return a full id=>key=>value array but it also offers the option of choosing either numerical or associative return
http://www.php.net/manual/en/function.mysql-fetch-array.php