I\'m creating an e-commerce site using CodeIgniter.
How should I get the query string?
I am using a Saferpay payment gateway. The gateway response will be li
You can get it like this:
$this->input->get('some_variable', TRUE);
See this for more info.