如何使用codeigniter发布数据?

时间:2017-09-28 04:41:39

标签: php codeigniter

如何将帖子数据映射到变量

handy.php

     if($this->input->method() === 'post') {
        $obj = json_decode($this->input->raw_input_stream);
        print_r($this->input->raw_input_stream);
        print_r($obj);
        $name = $obj->name;         
        $mobile  = $obj->mobile;
        $state = $obj->state;
         }

我的邮递员回复是Postman response

1 个答案:

答案 0 :(得分:1)

在codeigniter中如果您使用post发送@Html.ActionLink("Create", "ActionName", "ControllerName",null,new {@id="CreateNew" }),可以将变量中的POST值设置为

xyz = 'some_value'

您的代码应如下所示:

$xyz = $this->input->post('xyz');

假设您已为if($this->input->post()) { $name = $this->input->post('name'); $mobile = $this->input->post('mobile'); $state = $this->input->post('state'); } 发送了一些数据。您可以自行清除通知。