$ _POST在codeigniter中不起作用

时间:2016-08-24 07:00:03

标签: php codeigniter

我的登录表单是:

http://www.khabgahfeiz.ir/admin/login

在我的控制器中:

    public function handling() {

        var_dump($_POST['email']);
        return;
....

但它返回null值,我收到了这个错误:

Severity: Notice

Message: Undefined index: email

Filename: backend/login.php

Line Number: 29

4 个答案:

答案 0 :(得分:1)

使用$this->input->post()。 例如:

$this->input->post('table field'=>'form element name');

答案 1 :(得分:0)

在你的控制器中使用这样的

echo $this->input->post('email');

答案 2 :(得分:0)

输入所有帖子 $ data = $ this-> input-> post(); **和单个帖子* $ name = $ this-> input-> post('name');

答案 3 :(得分:0)

我改变了它:

 $config['base_url']    = 'http://khabgahfeiz.ir/';

到:

$config['base_url'] = 'http://www.khabgahfeiz.ir/';