I can't get the parameter values, if a value in the URL has the character '#'
Say if i want to set the above values to my URL parameters and print them on PHP
client=hello#56
code=123
I'd set the URL like this,
www.blah.com/index.php?client=hello#56&code=123
$client= isset($_GET['client']) ? $_GET['client'] : "" ;
$code= isset($_GET['code']) ? $_GET['code'] : "" ;
echo "This is client : $client <br /> ";
echo "This is code : $code <br />";
The Output will be, '
This is client : HELLO
ONLY,
the rest of the parameters dont get displayed.
After doing some testing i noticed that everything after the '#' in the client parameter wont get displayed .
Why is this and how can i overcome this?