This soultion uses mysql_fetch_object(). It will allow you to reference each field by name instead of using an index. It will be helpful when you have 110 some odd fields.
//pull all info from the database
$sql = "SELECT * FROM table_name";
$result = mysql_query($sql)
or die('Yo query be broke, fool!');
//determine the number of rows you returned
$num_rows = mysql_num_rows($result);
//loop through each row
for($i = 0; $i < $num_rows; $i++)
{
$row = mysql_fetch_object($result);
echo("Name = $row->name<br>
Age = $row->age<br>
Weight = $row->weight<br>
Height = $row->height<br><br>")
}
This assumes you field names are name, age, height and weight so you reference them like above: $row->field_name
Does this make sense?