简体   繁体   English

在Codeigniter中获取帖子数据时出现问题

[英]Problems getting post data in codeigniter

I'm having problems getting post data from my view. 我在从视图中获取帖子数据时遇到问题。 In my controller i currently have the following: 在我的控制器中,我目前有以下内容:

function update()
{
    var_dump($this->input->post('name'));
}

That returns 那回来了

bool(false)

I have tried 我努力了

var_dump($_POST);

but that returns an empty array 但这返回一个空数组

Here is my view on pastebin(I can't get the format right here) 这是我对pastebin的看法(我无法在此处获取格式)

http://pastebin.com/zJvuDRu4 http://pastebin.com/zJvuDRu4

Any help would be appreciated. 任何帮助,将不胜感激。

You forgot the attribute name 您忘记了属性名称

<td><input type="text" id="name" value="{name}"/></td></tr>

The correct is: 正确的是:

<td><input type="text" id="name" value="{name}" name="name"/></td></tr>

And the others inputs, you have to do the same. 和其他输入,您必须执行相同的操作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM