Welcome Guest, Not a member yet? Register   Sign In
Display min_length
#1

[eluser]ameur[/eluser]
Hello,
Please i want to display the value of min_length in my costum message because i've use it in two times (field username and field password)
this is my code:
Code:
$this->load->library('form_validation');
                
                $this->form_validation->set_rules('username', 'Identifiant', 'trim|required|min_length[3]|alpha_numeric|xss_clean|callback__valid_username');
                $this->form_validation->set_rules('pwd', 'Mot de passe', 'trim|required|min_length[5]|md5');
                $this->form_validation->set_rules('email', 'Email', 'trim|valid_email');
                
                
                $this->form_validation->set_message('required', '» champ obligatoire');
                $this->form_validation->set_message('min_length', '» ce champ doit contenir au moins /*something missing here!!!*/ caracteres');
                $this->form_validation->set_message('_valid_username', '» cet identifiant est déja utilise');
                $this->form_validation->set_message('valid_email', '» email invalide');
                
                $this->form_validation->set_error_delimiters('<span class="single_error">', '</span>');
thank you Smile


Messages In This Thread
Display min_length - by El Forum - 03-10-2009, 04:10 AM
Display min_length - by El Forum - 03-10-2009, 04:27 AM
Display min_length - by El Forum - 03-10-2009, 04:37 AM
Display min_length - by El Forum - 03-10-2009, 04:42 AM
Display min_length - by El Forum - 03-10-2009, 04:47 AM



Theme © iAndrew 2016 - Forum software by © MyBB