How do you set an error message for max_length and min_length rules. For instance, if I set a rule max_length[6], I'd like the error message to display
Max characters allowed: 5
|
|
|
||
|
|
|
|
gAMBOOKa, create a 'new' rule that also checks for max_length
and for the method..
add this to your controller as a new rule and set the message like so ---^ |
|||
|
|
|
|
CodeIgniter has one of the better documentations out of all the frameworks. Read the userguide on their site or the one in your CI directory. http://codeigniter.com/user_guide/libraries/form_validation.html#settingerrors |
||
|
|
|
@Daniel is correct. Per CodeIgniter's documentation, you can override the default error message for any validation rule (such as "min_length", "max_length", etc.) like this:
So, in your example you could do:
Simply include that where your validation rules exist. |
||
|
