Tuesday 29 October 2013

Change Error Message from Form Validation CodeIgniter (CI)

Example :

$this->form_validation->set_rules('fullname', '<b>Full Name</b>', 'required');

Message :
The Full Name field is required.

Example :
$this->form_validation->set_rules('email_address', '<b>Email Address</b>', 'required|valid_email');

Message :
Wrong email format. Please check your email address.

The Location to change the Message :
/system/language/english/form_validation_lang.php

Example :
$lang['valid_email']        = "Wrong email format. Please check your email address.";

Change to : -
$lang['valid_email']        = "The %s field must contain a valid email address.";



Posted By
Naim Najrim Zakaria

0 comments:

Post a Comment