Welcome Guest, Not a member yet? Register   Sign In
Form Validation
#15

[eluser]Bart v B[/eluser]
Youre raping CI Wink

There is no need to do that in that way..

Just add an form_error() where you want to echo the error..

Code:
<p>
    &lt;?php echo form_error('email');?&gt;
    <label for="email">E-mail</label><br />&lt;?php echo form_input($email); ?&gt;
  </p>


in youre controller:
Code:
$this->form_validation->set_rules('email', 'email', 'trim|required|valid_email|strip_tags');
$this->form_validation->set_error_delimiters('<div class="error">','</div>');

And at last you want some color on the error that were doing with CSS:
[code]
.error {
color:#ff0000;
}
[code]

That's all Smile


Messages In This Thread
Form Validation - by El Forum - 04-19-2010, 02:31 AM
Form Validation - by El Forum - 04-19-2010, 02:41 AM
Form Validation - by El Forum - 04-19-2010, 02:53 AM
Form Validation - by El Forum - 04-19-2010, 03:08 AM
Form Validation - by El Forum - 04-19-2010, 03:10 AM
Form Validation - by El Forum - 04-19-2010, 03:22 AM
Form Validation - by El Forum - 04-19-2010, 03:22 AM
Form Validation - by El Forum - 04-19-2010, 03:34 AM
Form Validation - by El Forum - 04-19-2010, 03:43 AM
Form Validation - by El Forum - 04-19-2010, 03:47 AM
Form Validation - by El Forum - 04-19-2010, 04:05 AM
Form Validation - by El Forum - 04-19-2010, 04:31 AM
Form Validation - by El Forum - 04-19-2010, 04:47 AM
Form Validation - by El Forum - 04-19-2010, 06:31 AM
Form Validation - by El Forum - 04-19-2010, 06:37 AM
Form Validation - by El Forum - 04-19-2010, 06:43 AM
Form Validation - by El Forum - 04-19-2010, 06:50 AM
Form Validation - by El Forum - 04-19-2010, 06:54 AM
Form Validation - by El Forum - 04-19-2010, 06:54 AM
Form Validation - by El Forum - 04-19-2010, 07:17 PM
Form Validation - by El Forum - 04-19-2010, 10:01 PM
Form Validation - by El Forum - 04-20-2010, 01:10 AM
Form Validation - by El Forum - 04-21-2010, 11:05 AM
Form Validation - by El Forum - 04-21-2010, 11:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB