CodeIgniter - Unable to access an error message corresponding to your field name Password.(pword_check)

后端 未结 6 1796
予麋鹿
予麋鹿 2020-12-09 21:53

I am a new to codeIgniter and I just got stuck in the very beginning. I am using HMVC extention and while validating I am getting the following error:

Unable

6条回答
  •  旧巷少年郎
    2020-12-09 22:04

    The reason for this error is you didn't loaded the security helper the following is the way enable security helper with autoload.php in config folder or you can directly load the helper as mentioned last line of this post

    And if, despite everything, you really need it, go to application/config/autoload.php :

    $autoload['helper'] = array('security'); Or, before your form validation $this->load->helper('security');

提交回复
热议问题