In static html I can link to any location
within a documentz;
<a name=right_here> </a>
and then:
<a href=index.html#right_here> go_there </a>
How do I do that if the page in question
is the result generated?
<?php
$query = "select page_stuff from my_schema where page_title='$page_title'";
?>
Perhaps the dynamic page content will have
multiple, well known named <a tags.
How does a script print that page and
then jump to some such inner location,
that was passed in as a parameter,
to the original page generation code?