When I use below to get the varible from a url like
test.php?aaaa=a bc#1$bbbb=try
result will be as below
1 : abc
2:
all variable after # will be ignore, how to fix it?
test.php?aaaa=a bc#1$bbbb=try
Code:
$aaaa=$_GET["aaaa"]; $bbbb=$_GET["bbbb"]; echo "1 : " . $aaaa . "<br />"; echo "2 : " . $bbbb . "<br />";
1 : abc
2:
all variable after # will be ignore, how to fix it?
Comment