I am writing an FAQs section for a website. The site has about 300 questions and answers so I don't want to put everything on one page.
I have also put each set of questions into it's own category for ease of use/management ... easy for the user; maybe not so easy for me.
Basically I have 2 pages:
faqs.php <-- lists all of the categories and the questions for each category
-and-
faqscats.php <-- lists all of the questions and answers in the category.
What I want is to used named anchors to reference the links on the next page. Typically this is easy to do.
Code: Select all
// inside faqs.php you would have a link like this:
<a href="faqscats.php#question1">Click here to see #1</a>Code: Select all
// inside faqs.php you would have a link like this:
<a href="faqscats.php?c=3#question1">Click here to see #1</a>Unfortunately (maybe to a limitation of html or internet exploiter), the server whines and 404's the page which (with my apache config) basically shows them the home page (index.php).
What the heck am I doing wrong? Is there another way to do this?
HELP!!!