I have the following url
http://www.example.com/check.php?q=498#2D83B631%3800EBD!801600D*7E3CC13
Then I try
<?php var_dump( $_GET); ?>
and
<?php
echo $my_string = filter_input(INPUT_GET, 'q', FILTER_SANITIZE_STRING);
?>
But they both seem to stop at the "#" symbol and only display 498
. Is there a way to retrieve the entire 498#2D83B631%3800EBD!801600D*7E3CC13
?