Qua prestaties maakt het niet uit wat je gebruikt. Het verschil is dat mysql_fetch_object object retourneert:
while ($row = mysql_fetch_object($result)) {
echo $row->user_id;
echo $row->fullname;
}
mysql_fetch_assoc() geeft associatieve array terug:
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
}
en mysql_fetch_array() geeft array terug:
while ($row = mysql_fetch_array($result)) {
echo $row[0];
echo $row[1] ;
}