I have read this: What does /#!/ mean in URL? and so I'm aware # is a fragment separator, but I am having difficulties with $_GET ing a URL to display on a subsequent page, where the # is present.
I have a php page which sends a user input, a URL, to another page where it is displayed.
<?php echo $_GET["url"]; ?>
Where the url containing the variables looks like this...
http://website.com/qr/index.php?url=http://www.example.com&many=false&set=false
http://www.example.com is displayed.
Whereas a url containing a fragment like this...
http://website.com/qr/index.php?url=http://www.example.com/#fragment&many=false&set=false
displays nothing.
I am not able to use $_POST.
Thanks for any help.