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

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -