EDIT : Thanks for the quick responses guys - I ended up switching to mysql_fetch_assoc() and using a do...while and I am good to go.
I am using this
while ($row)
{
echo "".$row['Last Name']." ";
echo "".$row['First Name']." ";
echo "".$row['Middle Name']." ";
echo "".$row['Sfx']." ";
echo "".$row['Prf']." ";
echo "".$row['Spouse/SO']." ";
echo "".$row['Ancestor']." ";
echo "".$row['Status']." ";
echo "".$row['Address 1']." ";
echo "".$row['Address 2']." ";
echo "".$row['City']." ";
echo "".$row['ST']." ";
echo "".$row['Zip 5']." ";
echo "".$row['Zip 4']." ";
echo "".$row['Home Phone']." ";
echo 'Bio ';
$row = mysql_fetch_array($results);
}
echo "
";