<form id="idlogin" action="<?= base_url('login/ingresar'); ?>" method="post" role="form" >
Login is a controller class Login extends CI_Controller that has a function enter
function ingresar(){
print_r($_POST);
$usuario = $this->input->post("user_login");
$passw = $this->input->post("pass_login");
The subject when I sent the information, I looked at the debugger and the post was done but look for the route link and do not link
That is, it does not go to the controller. Why is it that I have the base_url right?