I need add a named anchor into this code:
<?
echo "<a href=\"reviews-mockup2.php?category=$category&keyword=" . $_REQUEST['keyword'] . "&nationalpage=";
?>
which currently looks like this in the page:
http://test.usfamilyguide.com/reviews-mockup2.php?category=&keyword=&nationalpage=1
I tried
<?
echo "<a href=\"reviews-mockup2.php?category=$category&keyword=" . $_REQUEST['keyword'] . "&nationalpage=" . "#named-anchor";
?>
and got
http://test.usfamilyguide.com/reviews-mockup2.php?category=&keyword=&nationalpage=#named-anchor1
thanks!