我的登录表单是:
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
答案 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/';