Okey doke, let's knock up a rough version - we'll say for the sake of it that that the main table you've produced is in a function called show_members()
When you click on one of the links then the variable $GET['id'] will be defined in the script - when you first get to the script that won't be in the url, so $GET['id'] will be undefined, you check for that with [MAN]isset[/MAN], or if it's set but you don't want to allow zero then you can also use [MAN]empty[/MAN]
So your basic framework for the script becomes
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Today is: Generic Title Day</title>
</head>
<body>
<?php
if (isset($_GET['id']))
{
$id = (int)$_GET['id']);
show_user_detail($id);
// create a link to this page without ?id=xxx to show the members again
echo '<a href="', $_SERVER['SCRIPT_NAME'], '">Show Users</a>';
}
else
{
// show links to the member guff
show_members();
}
?>
</body>
</html>