CodeIgniter:post变量未被读取

时间:2009-11-08 05:00:07

标签: php codeigniter post

我有一个控件user,其方法为login

出于某种原因,当我打电话时:

$this->post

我收到错误Undefined property: User::$post

虽然,这很好用:

print_r($_POST);

1 个答案:

答案 0 :(得分:4)

您应该使用:

$this->input->post('your_post_variable');