Hi,
Just to give you some code to start with (that coincide with what platinum posted).
PHP Code:
// PAGE 1
// LISTING ALL THE NAMES
$conn = mysql_connect('server', 'user', 'password') or die(mysql_error);
$db = mysql_select_db('databasename', $conn);
$sql = "SELECT nameid, name FROM nametbl";
$result = mysql_query($sql, $db) or die(mysql_error());
while($row = mysql_fetch_array($result)) {
$nameid = $row['nameid'];
$name = $row['name'];
echo "<a href=""\"details.php?nameid=$nameid\">$name</a><br>\n";
}
// PAGE 2
// LISTING ALL INFO ABOUT THE SELECTED NAME
$conn = mysql_connect('server', 'user', 'password') or die(mysql_error);
$db = mysql_select_db('databasename', $conn);
$sql = "SELECT id, address, email FROM addtbl WHERE id=" . $_GET['nameid'];
$result = mysql_query($sql, $db) or die(mysql_error());
$row = mysql_fetch_array($result)
echo 'id: ' . $row['id'] . "<br>\n";
echo 'Address: ' . $row['Address'] . "<br>\n";
echo 'Email: ' . $row['Email'] . "<br>\n";
If you want more help on the queries you need to provide more information on what fields you have in the db table.
Hope this gives you a start. 
-Helge
Bookmarks