关于CI表单验证类解决方法
程序员文章站
2022-05-01 15:53:56
...
关于CI表单验证类
我在写代码的时候遇到一个问题,$this->form_validation->run() == FALSE不能正常工作。我运行CodeIgniter用户指南版本2.1.0表单验证详解中的例子也是不行呢?哪位大哥大姐给指点下,多谢!
------解决方案--------------------
留空表单域提交表单你会看到错误信息。 如果你填充所有的表单域提交表单你会看到成功页
------解决方案--------------------
php code
$this->form_validation->set_rules ( 'product_name', '产品', 'required' );
if ($this->form_validation->run () == TRUE) {
}
前台html
" />', '
我在写代码的时候遇到一个问题,$this->form_validation->run() == FALSE不能正常工作。我运行CodeIgniter用户指南版本2.1.0表单验证详解中的例子也是不行呢?哪位大哥大姐给指点下,多谢!
------解决方案--------------------
留空表单域提交表单你会看到错误信息。 如果你填充所有的表单域提交表单你会看到成功页
------解决方案--------------------
php code
$this->form_validation->set_rules ( 'product_name', '产品', 'required' );
if ($this->form_validation->run () == TRUE) {
}
前台html
" />', '