Hi, thanks for responding.
Here is the relevant code in my initial page for the links:
echo "<a href='../dogs/dogpage.php#";
echo strtolower($row[1]) . "'>";
/This is the name for the anchor. /
echo "?id=" . $row[0] . "'>";
/This passes the id for the record to the querystring to select the particular record . /
And here is the code in the referenced page dogpage.php:
echo "<a name=" . strtolower($name) . "></a>";
/ the $name variable here is the same as the $row[1] variable in the referencing page /
The HTMl output in both pages looks right. It just doesn't work. Thanks so much for your input.
Rebecca