CodeIgniter PHP Framework - Need to get query string

前端 未结 12 1495
挽巷
挽巷 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:34

    You can get it like this:

    $this->input->get('some_variable', TRUE);
    

    See this for more info.

提交回复
热议问题