CodeIgniter PHP Framework - Need to get query string

前端 未结 12 1485
挽巷
挽巷 2020-11-27 04:07

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

12条回答
  •  [愿得一人]
    2020-11-27 04:48

    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.

提交回复
热议问题