php – codeigniter表单验证错误消息不显示

前端之家收集整理的这篇文章主要介绍了php – codeigniter表单验证错误消息不显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我加载模型并从表中获取行时,我的表单验证错误不会在视图文件显示消息.这是我的代码.
$this->form_validation->set_rules('bookCategoryId','Book SubCategory Id','trim|required');
        $this->form_validation->set_rules('bookSubCategoryId','trim|required');
        $this->form_validation->set_rules('bookSubCategoryName','Book SubCategory Name','trim|required');
if ($this->form_validation->run() == FALSE) {
        /* Load Model */
        $this->load->model('book_category');

        /* Get Categories */
        $template_data['mainContentData']['book_categories'] = $this->book_category->get_all_categories();

        /* set view page to be called  */
        $template_data['mainContent'] = 'admin_add_book_subcategory';

        /* Load Template */
        $this->template($template_data);
    }

如果我排除这两行,我的表单工作正常

/* Load Model */
        $this->load->model('book_category');

        /* Get Categories */
        $template_data['mainContentData']['book_categories'] = $this->book_category->get_all_categories();

比我的验证显示错误.我不知道问题出在哪里?

您应该使用validation_errors函数
<?PHP echo validation_errors(); ?>

文档3.x:validation_errors

文件2.x:form_validation

猜你在找的PHP相关文章