http://xxxx.us/a/6126/securitycheckzpsfc10cc9.jpg#id=558554
I want to Get Url Parameter After Hash.
$hash = $_GET['hash'];
Not Working
I want to Get Url From Address Bar. And Get the Part After Hash.
<?php
$url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$url1 = parse_url($url);
echo $url1['fragment'];
?>
This Is Also Not Working.