Please help me out, if i have a URL like this
http://www.example.com/dashboard.php#settings
How do i get it in full cause. when I use:
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
I get http://www.example.com/dashboard.php
it excludes the #
and the text after it, how do I go about getting everything in full like this http://www.example.com/dashboard.php#settings
.