

idevisedesign said:In HTML, you can type for example:
<a href="index.html#paragraph2">Paragraph2</a>
And next to the second paragraph, you put:
<a name="paragraph2" id="paragraph2"></a>
When you click the link, it takes you to the second paragraph... How do you do this in PHP?
idevisedesign said:I am saying that all extensions are being changed to php, so instead of
<a href="index.html#paragraph2">Paragraph2</a>
I basically need something like
<a href="index.php#paragraph2">Paragraph2</a>
The one with the php extension wont work. What should i replace the "#" with so that it works with a .php extension?


