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
Open up application/config/config.php and set the following values:
$config['uri_protocol'] = "PATH_INFO"; $config['enable_query_strings'] = TRUE;
Now query strings should work fine.