I am using AJAX with hash in URL with prototypejs.
When I use following URL:
http://example.com/#/example/104?v=0&d=a&rpp=10
print_r( $_GET ); // output: array()
When I use following URL:
http://example.com/example/104?v=0&d=a&rpp=10
print_r( $_GET ); // output: Array ( [v] => 0 [d] => a [rpp] => 10 )
So my question why I am not able to get URL params when using hash in URL. How can I get it.
Thanks