I have recently learnt that php decodes a query string automatically. Is there a way to disable this feature for a webpage?
So when you write code like:
Code: Select all
$account = $_REQUEST["account"];
This is probably a very good thing but in my current situation it is not desirable. What is the best way to get the querystring data 'as is'?