no.
if you use mysql_fetch_obj -- you will get an object in return (which is $row->products_id)
if you use mysql_fetch_array, mysql_fetch_assoc you get an array in return ( which, in case of mysql_fetch_assoc, is $row['products_id'])
So, same information, a few ways of returning it