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
There is extra Corrected code:mysql_fetch_array in the code. Also, opening table tag() is missing.
$query = "SELECT * FROM members";
$results = mysql_query($query);
echo "";
while ($row = mysql_fetch_array($results))
{
echo "
';
}
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
";