Hello there. I think this belongs in the database talk forum, so hopefully one of the admins will move it later. 🙂
But to answer your question, you may have to research more on mysql.com with the things I talk about in this post.
Now I'm assuming your members are stored in some sort of mysql database. So in your script, you want to extract the data out of this database. The steps to doing this are:
1) Connect to the database
2) Query the data you want to extract
3) Print out the data on a nice webpage
So the start of your code may look like this:
<?
// Now into the MySQL. Open the database
$db = mysql_connect( $host, $username, $dbpword );
$connection = mysql_select_db( $database, $db );
This connects to your database. You will have to fill in $host, $username, and $dbpword with the correct data. $host is 99% of the time "localhost."
// Query: Get all members and their info
$sql = "SELECT * FROM members";
$the_members = mysql_query($sql);
Now you want to run the query to get the members. the 'members' using in the $sql will be your database table with all the member information in it.
while($my_members = mysql_fetch_array($the_members))
{
printf("%s, %s <br />",
$my_members['username'], $my_members['birthday']);
}
?>
Now you want to print out the page with the data. In this example, I printed out the username and their birthday, but you can change it to your liking.
The while statement says, "while there is still data from the query, print 'username, birthday<br />"
I hope that's understandable and helps you. 🙂