let's assume your DB table looks something like this:
ITEMS
----------------------------------------
ID NAME DESCRIPTION
1 Gnabber Even more gnabber
2 Gnuelp Even more gnuelp
2 Blubb Even more blubb
you select the whole table with:
SELECT * FROM ITEMS ORDER BY NAME
then you output a list with something like:
while( $row = mysql_fetch_assoc($rs) )
{
echo "<a href=\"detail.php?ID={$row['ID']}\">{$row['NAME']}</a><br>\n";
}
Then you have a detail-page "detail.php" where you can select a single entry with
SELECT * FROM ITEMS WHERE ID={$_GET['ID']}
easy enough, isn't it? =)
hope that helps,
tREXX