codeigniter form_validation email
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email');
codeigniter form_validation email
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email');
codeigniter load form_validation
<?php
class Form extends CI_Controller {
public function index()
{
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
if ($this->form_validation->run() == FALSE)
{
$this->load->view('myform');
}
else
{
$this->load->view('formsuccess');
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us