here's what i have:
<?php
include("srd_connect.phtml");
$showname = mysql_query("select name from recipe");
$showrecipe = mysql_query("select * from recipe");
while ($row = mysql_fetch_array($showname)) {
echo ("<a href='$PHP_SELF?showrecipe=$showrecipe'>");
echo $row["name"];
echo ("</a>");
?>
still not working...i know there's a major part missing here. thx for your help.