Does anyone know what the pros and cons of using mysql_fetch_object vs. 
mysql_fetch_array.

I find it easier to use the object version because you dont have to code 
any extra statements to put them into regular variables.

print "$obj->field_name";
as opposed to
$field_name = $row["field_name"];
print "$field_name";

Im just curious to see if there are any problems (resources, etc) that 
come with using the object method???



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to