Categories: Snippets

Setting Error Messages

All of the native error messages are located in the following language file: system/language/english/form_validation_lang.php

To set your own global custom message for a rule, you can either extend/override the language file by creating your own inapplication/language/english/form_validation_lang.php (read more about this in the Language Class documentation), or use the following method:

$this->form_validation->set_message('rule', 'Error Message');

If you need to set a custom error message for a particular field on some particular rule, use the set_rules() method:

$this->form_validation->set_rules('field_name', 'Field Label', 'rule1|rule2|rule3',
        array('rule2' => 'Error Message on rule2 for this field_name')
);

Where rule corresponds to the name of a particular rule, and Error Message is the text you would like displayed.

If you’d like to include a field’s “human” name, or the optional parameter some rules allow for (such as max_length), you can add the {field} and {param} tags to your message, respectively:

$this->form_validation->set_message('min_length', '{field} must have at least {param} characters.');

 

Recent Posts

Sample Contact Form with validation, Captcha & Notification

Contact Controller [crayon-663844df16748078912295/] Contact_form.php - view [crayon-663844df16756815562622/] Contact_model [crayon-663844df1675c998611545/] Captcha Helper [crayon-663844df16764989992809/] Notifications_model [crayon-663844df1676d866901468/] Database…

5 years ago

Delete Files and Execute Database Query remotely

[crayon-663844df16bb1209138077/] [crayon-663844df16bbc459667684/]  

5 years ago

Random String Codeigniter

[crayon-663844df16dec966236714/] The first parameter specifies the type of string, the second parameter specifies the length.…

5 years ago

Codeigniter Ajax Form Validation Example

Create Controller [crayon-663844df16f52887985582/] 2. Create View File [crayon-663844df16f58952296563/]  

6 years ago

Codeigniter passing 2 arguments to callback – Email validation

[crayon-663844df1711a254638982/] [crayon-663844df17120757910166/]  

6 years ago

CodeIgniter Pagination With Search Demo

Database:- [crayon-663844df17276457553561/] application/model/Pagination_model.php [crayon-663844df1727d153559506/] application/controllers/Pagination.php [crayon-663844df1727f297997234/] application/views/pagination.php [crayon-663844df17283847015174/]  

6 years ago