Quote:
|
Originally Posted by smallbeer
Code:
echo("<go href=\"detail.php?".SID."\">".$row ['fname']." ".$row['lname']." method=\"post\">");
echo("<postfield name=\"rid\" value=\"".$row['ID']."\"/>");
echo("</go>");
But you have a closing > inbetween SID and fname. Should that be there?
|
I want to build a link with ".$row ['fname']." ".$row['lname']." and this link should be forwarded to detail.php. With > I can name the link I asumed , at least that was the case with
echo("<a href=\"detail.php?rid=".$row['ID']."\">".$row['fname']." ".$row['lname']."</a>");
Now you say it is a closing tag I am confused !!!