Welcome Guest, Not a member yet? Register   Sign In
form validation errors
#4

(06-29-2016, 02:08 PM)InsiteFX Wrote: There are two types of methods for showing form errors:

PHP Code:
<?php echo validation_errors(); ?> // shows all form errors

<form_open>

    <?php echo form_error('username'); ?> // only shows this error
    
</form> 

$this->form_validation->set_rules('name', 'name', 'trim|min_length[3]|numeric');

if( ! $this->form_validation->run()){
   echo validation_errors();
}


If the value of the field "name" will be "some text" I need you deduced error "min_length" and "numeric" and not just a mistake, "min_length".Thank you!
Reply


Messages In This Thread
form validation errors - by jonston - 06-29-2016, 05:10 AM
RE: form validation errors - by InsiteFX - 06-29-2016, 02:08 PM
RE: form validation errors - by jonston - 06-29-2016, 03:41 PM
RE: form validation errors - by PaulD - 06-29-2016, 03:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB