How can I get the value of the URL hash (eg \"PARAMETERS\" in url \"page.html#PARAMETERS\") on the server in PHP?
\"PARAMETERS\"
\"page.html#PARAMETERS\"
You can't, at least not directly. The fragment identifier is never sent to the server.
You could extract it in JS using location.hash and then trigger another HTTP request to the server that includes it as data (e.g. in the query string).
location.hash