php interview questions and answers part-4 what are the differences between mysql_fetch_array(), mysql_fetch_object(), mysql_fetch_row()? answer 1: mysql_fetch_array() -> fetch a result row as a combination of associative array and regular array. mysql_fetch_object() -> fetch a result row as an object. mysql_fetch_row() -> fetch a result set as a regular array(). answer 2: the .. .. ..
