thanks for the quick reply. That seems like it would work fine, but I'm getting an empty result.
here's my code:
$prod_go = "";
while (list($prods_go ) = mysql_fetch_row($product_query)) {
$prod_go .= "<br><a href=single.php?prodname=', urlencode ($prods_go), '>$prods_go</a>";
}
?>
<tr>
<td colspan=2 bgcolor=#FFFF99>
<table width=99% border=0 cellpadding=2>
<tr>
<td>
<? echo "$prod_go"; ?>
the url result is:
http://www.localhost/single.php?prodname",
is my syntax incorrect?
Thanks again!
_k