Something like this may help:
PHP Code:
$main = "SELECT * FROM members ORDER BY id DESC";
if($ret = mysql_query($main))
{
while($row = mysql_fetch_array($ret))
{
echo '<pre>';
print_r($row);
echo '</pre>';
}
} else {
die('MySQL Error: ' . mysql_error());
}
Take a look at the results, it will show you what the $row arrays look like for your members, to adapt it to your site, remove the code within the while loop. Boom, instant member list.
Also, I am not one for doing all the hard work, I will only get you where you need to get, my help requires your intelligence, otherwise there is no learning.