Hi,
Thanks for the input, but for some reason I just couldn't get it to work. Like I said, I am real new at this.
Maybe this will help. Here is the code one of my forms is sent to. Where and how would I place the exact hyperlink?
if ($type == "")
{$type = '%';}
if ($title == "")
{$title = '%';}
$result = mysql_query ("SELECT * FROM recipe1
WHERE type LIKE '$type%'
AND title LIKE '$title%'
");
if ($row = mysql_fetch_array($result)) {
do {
printf("Type of Recipe: %s\n<br>", $row["type"]);
print (" ");
printf("Title of Recipe: %s\n<br>", $row["title"]);
print ("<p>");
printf("First Name: %s\n<br>", $row["first"]);
printf("Last Name: %s\n<br>", $row["last"]);
} while($row = mysql_fetch_array($result));
} else {print "Sorry, no records were found!";}
Thanks
Frank