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-68b710ea835b3206337089/] Contact_form.php - view [crayon-68b710ea835c6393590538/] Contact_model [crayon-68b710ea835cf507967387/] Captcha Helper [crayon-68b710ea835d9029797058/] Notifications_model [crayon-68b710ea835e5340535329/] Database…

7 years ago

Delete Files and Execute Database Query remotely

[crayon-68b710ea83bb2417661957/] [crayon-68b710ea83bbb771435305/]  

7 years ago

Random String Codeigniter

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

7 years ago

Codeigniter Ajax Form Validation Example

Create Controller [crayon-68b710ea84903776981840/] 2. Create View File [crayon-68b710ea8490a127715301/]  

7 years ago

Codeigniter passing 2 arguments to callback – Email validation

[crayon-68b710ea8509b929942752/] [crayon-68b710ea850a4437158742/]  

7 years ago

CodeIgniter Pagination With Search Demo

Database:- [crayon-68b710ea8545d197099132/] application/model/Pagination_model.php [crayon-68b710ea85464456437766/] application/controllers/Pagination.php [crayon-68b710ea85467666110752/] application/views/pagination.php [crayon-68b710ea8546c379547199/]  

7 years ago