me jQuery generate url:
location.hash = "parameter1=DEF¶meter2=XYZ";
//www.example.com#parameter1=DEF¶meter2=XYZ
How to read this parameter1 and parameter2 in PHP
me jQuery generate url:
location.hash = "parameter1=DEF¶meter2=XYZ";
//www.example.com#parameter1=DEF¶meter2=XYZ
How to read this parameter1 and parameter2 in PHP
Your javascript is client-side and your PHP is server-side, so it's not possible.
You should rethink your application or use Ajax to send data from Javascript to PHP: https://api.jquery.com/jquery.ajax/