php - To load controller using codeigniter
450
In the below codeigniter code i placed the controller.But it is not loading the controller.But it shows The page you requested was not found.Pls help me to solve the issue.
class User extends CI_Controller {
public function __construct() {
parent::__construct();
$this -> load -> model('country_model');
}
function Register() {
$data['countries'] = $this -> country_model -> get_countries();
$this -> load -> view('test/post_view', $data);
}
}
Answer
Solution:
The parameters that come behind index.php in your url means the following.. index.php/user/register = go to the controllers user and activate the function register.