Prestandamässigt spelar det ingen roll vad du använder. Skillnaden är att mysql_fetch_object returnerar objekt:
while ($row = mysql_fetch_object($result)) {
echo $row->user_id;
echo $row->fullname;
}
mysql_fetch_assoc() returnerar associativ array:
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
}
och mysql_fetch_array() returnerar array:
while ($row = mysql_fetch_array($result)) {
echo $row[0];
echo $row[1] ;
}