php - Fatal error: Call to undefined function validation_errors() in -
here code:
class cci extends controller { function cci() { parent::controller(); } function index() { $this->load->helper('url'); $this->load->view('users/login'); } function test() { echo "testing data"; } }
the page loading fine until moved location of "login" page inside of "users" folder
well change
$this->load->view('users/login');
to
$this->load->view('login');
since moved file inside users folder need adjust paths that.
Comments
Post a Comment