我正在尝试为输入设置自定义消息:
$this->form_validation->set_message('username', 'Choose a business, Mang!');
并显示:
<?php echo form_error('username'); ?>
但是我什么都没有显示,怎么了?
这是我需要的吗?例子:
if($result)
{
$this->form_validation->set_message('username', 'Choose a business, Mang!');
}