Welcome Guest, Not a member yet? Register   Sign In
Trying to use form_validation rule group; not happening
#1

[eluser]Daniel H[/eluser]
Hi all,

I'm trying to validate a comment form against a rule group specified in a config file named form_validation.php. It contains this:

Code:
<?php
$config = array(
                 'comment_form' => array(
                                    array(
                                            'field' => 'content',
                                            'label' => 'Comment',
                                            'rules' => 'trim|xss_clean|strip_tags|required'
                                         )
                                    )                    
               );
?>

Then I'm trying to load the rule using:

Code:
// Run the comment form validation
        if ($this->form_validation->run('comment_form'))
        {                    
...

However, it appears that the form validation is not performed at all (and no error occur). Am I missing the point here?

Dan.




Theme © iAndrew 2016 - Forum software by © MyBB