I'm designing a database-driven site, which uses URLS of the style "page.php?var=x". However some of the content I'm adding to the pages includes long documents with "old-fashioned" HTML internal links, i.e. <a name="section"></a>. In the old static HTML pages I could link directly to these anchor tags using the # syntax (<a href="page.html#section"></a>), but these internal links don't seem to be compatible with the new URLs - no matter where I put the #section, I get an error. Is there any way to make this work? Thanks!