It looks like you're new here. If you want to get involved, click one of these buttons!
$this->form_validation->set_rules('userID', 'Email or Username', 'trim|required|callback__check_login');
$this->form_validation->set_rules('userPassword', 'Password', 'trim|required');
if(!$this->form_validation->run())
{
echo fuel_block('header');
echo 'Something here--';
$this->load->view('login_form');
echo fuel_block('footer');
}
Comments