php - $_POST not work in codeingiter -


my login form :

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

in controller :

    public function handling() {          var_dump($_post['email']);         return; .... 

but return null value , got error :

severity: notice  message: undefined index: email  filename: backend/login.php  line number: 29 

use $this->input->post(). e.g.:

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

Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -