View Single Post
Old 05-29-2005, 07:38 AM  
Trafficbrokercom
Confirmed User
 
Join Date: Dec 2002
Posts: 542
He did not forget an echo the '=' equals "echo" in this case ..

the problem is a little bit more complex , what you are trying to do is basically starting a second php instance within an existing one (<? ... <?)

so change this code:

Code:
<a href="<?=$_GET["categ"]?>_next.php\">
to

Code:
<a href=\"" . $_GET["categ"] . "_next.php\">
the two quotation marks after the href are very important btw ..

Last edited by Trafficbrokercom; 05-29-2005 at 07:39 AM..
Trafficbrokercom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote