4,250
社区成员
发帖
与我相关
我的任务
分享$this->load->library ( 'form_validation' );
然后,设定你的检验规则和出错警示信息:
$this->form_validation->set_rules("ftitle", "信息名称", "trim|required|max_length[30]");
$this->form_validation->set_rules("fcontent", "信息说明", "trim|max_length[500]");
$this->form_validation->set_message("required", "请输入%s");
$this->form_validation->set_message("max_length", "%s内容过长,请重新输入");
$this->form_validation->set_error_delimiters('', '');
最后,验证值:
if($this->form_validation->run() == FALSE ){
///do something...
}
//do something...
}
}