I'm using cakePHP 1.2, and wondering how I can handle a URL that dynamically builds the page with a slug, but then links to the appropriate area with an HTML anchor. An example:
www.mysite.com/pageSlug#anchor
I would parse out the slug, which would be used to dynamically build the page. Once built, I would need to jump to the anchor. Any suggestions on how I could do this?
Thanks!