Possible Duplicate:
retrieve the hash in the url with php?
iam having a page that is containg bookmark in its url like
http://www.abc.com/page_url#bookmark
iam using $_SERVER['HTTP_HOST']
and $_SERVER["REQUEST_URI"]
to get the url but its gigvng URL only upto
http://www.abc.com/page_url i.e. its not giving my bookmarked link in it.
How can i fetch my complete url(with '#' content) in php????
Edit:
see what i want to do is i want to add '/' in my URL i.e. if a URL is http://www.abc.com/page_url#bookmark then i want to redirect it to http://www.abc.com/page_url#bookmark/ .when im doing this with $_SERVER["REQUEST_URI"] its resulting into http://www.abc.com/page_url/#bookmark which is wrong. Now plz tell how can i do this???