I am trying to get parameter values from the URL.
e.g. http://www.mywebsite.com/?id=345#gid=532&sid=567
I want to get gid
and sid
value from the url, but $_GET['sid']
and $_GET['gid']
is not working.
Please help me! How to get these #
tag values in php?