I have a mysql statement which grabs just one record based on an id. I want to know if using mysql_fetch_row or something along the lines of that is better then using something such as mysql_fetch_array, for just grabbing one row in a database.
It may seem like common sense to go with the mysql_fetch_row but I just want to make sure.
Source