I’m using joomla and acesef as a plugin and I need to get the full querystring as is. The problem is when I use $_SERVER['QUERY_STRING'] it contains the joomla QS isntead of my custom parameters.
A javascript or PHP solution would do. thanks
Edit:
Sample URL http://www.test.com/sc/my-account.html?action=payment-method
I want to get
action=payment-method
Instead I get
option=com_content&Itemid=4&id=16&lang=sc&view=article
Found the one that solves my problem
var qs = window.location.search.substring(1);
Thanks everyone SO rocks 🙂