$sql = "
SELECT member_name,member_type,etcetc
FROM members
ORDER BY member_name ASC
";
$sqlhandle = mysql_query($sql,$sqlconnection);
while ($row = mysql_fetch_array($sqlhandle)) {
echo "$row[member_name] $row[member_type] $row[etcetc]";
}
By using a while loop to store each ROW of data, you can access that rows data per loop. Allowing you to display the contents. Above is crude, you can add html to that, and make each element into a table cd TD and bolod stuff and alter data etc.
You CAN use the database column names like I exampled above. Its much more helpful than referencing by #, because if you ever change your SELECT statement, you have to go adjust all your #s ! eek! using the name in like $row[columnname], makes it much easier.
Hope this gives a good direction to follow.