I want to link to a section of a dynamic page using the #
anchor. Something like this:
<a href=page.php?id=3#section-name>LINK</a>
It didn't work. What is the right way to do it?
I'm not using a direct link, but a redirect like header("Location:page.php?id=3#section-name")
from another script.
I have a section named section-name
in file page.php. I guess page.php has a problem figuring out the value of the id to process (3
or 3#section-name
). I am redirected to page.php which has its content repeated vertically.