I have a page accessed via the url:
http://power-coder.net/Test/something.php?id=3#Page1
I know how to access the id parameter using $ _GET, however, do I have a way to access part # Page1? I looked at the $ _SERVER array, and does REQUEST_URI end in? Id = 3.
I know that I could also change # Page1 an additional parameter, for example & Page = 1, however there is a fair bit of code using the old type of URL that I would like to avoid re-writing, if at all possible.
Thanks for the help.
source share