I have a url like this http://example.com/?hello=1234
using this
   ob_start();
   var_dump($_GET);
   $result = ob_get_clean();
   print_r($result);
i get this
 array(1) {
 ["hello"]=>
 string(3) "123"
 }
but when it comes to http://example.com/#hello=1234 im getting nothing. 
i know that # is for client side/browser but is there any way to get everything after the # (hash tag) ? 
 
     
     
    