When I have a URL such as this:
http://website.com/?var=foo
Then the $_GET array looks like this:
Array
(
[var] => foo
)
But when I have a URL such as this:
http://website.com/#location?var=foo
Then the $_GET array is empty:
Array
(
)
Is this normal behavior? If so, is there a workaround for this scenario?