using
<?php echo $_SERVER['REQUEST_URI'] ;?>
when the url is: www.site.com/a/b/c/#d
www.site.com/a/b/c/#d
does not show the #d, but instead shows /a/b/c
#d
/a/b/c
Is this possible to include, or is it hidden for a reason?
whatever behind the # is client-side only. Server will not receive that.
#