How to receive post/get request in codeigniter

前端 未结 2 1318
梦谈多话
梦谈多话 2021-01-20 16:13

Im using

$this->input->post(\'name\') ; to get a request posted to my url.Instead of post I need to access get as well.

Like in normal ph

2条回答
  •  爱一瞬间的悲伤
    2021-01-20 16:32

    Try this if you want to post request from server

    if ($this->input->server('REQUEST_METHOD') == 'POST'){}
    
    if ($this->input->server('REQUEST_METHOD') == 'GET'){}
    

提交回复
热议问题