$ _POST在codeigniter中不起作用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$ _POST在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
答案

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

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

在控制器中使用这样的

echo $this->input->post('email');
另一答案

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

另一答案

我改变了它:

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

至 :

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

以上是关于$ _POST在codeigniter中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

or_where 在 codeigniter 模型中不起作用

数据表库在 CodeIgniter 3 中不起作用

忘记密码功能在 CodeIgniter 中不起作用

DataTables 函数在 Codeigniter 中不起作用

插件在 CodeIgniter 中不起作用

更新查询在 codeigniter 中不起作用