I’m trying to work with the CI framework (PHP), and not having much luck with the core "Input" class.
Here’s my code:
$user_name = $this->input->post('username');
$password = $this->input->post('password');
This is the result when I try to load the controller:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Login::$input
Filename: controllers/login.php
Line Number: 24
Any Tips?
Make sure that your controller extends
CI_Controllerand that you call the parent constructor in your own: