-5

using

<?php echo $_SERVER['REQUEST_URI'] ;?>

when the url is: www.site.com/a/b/c/#d

does not show the #d, but instead shows /a/b/c

Is this possible to include, or is it hidden for a reason?

d-_-b
  • 21,536
  • 40
  • 150
  • 256

1 Answers1

4

whatever behind the # is client-side only. Server will not receive that.

mauris
  • 42,982
  • 15
  • 99
  • 131