CakePHP validation not working

后端 未结 3 788
挽巷
挽巷 2021-01-22 08:13

Iam new in cakephp ,I need to validate a form.

This is the code: Controller:



        
3条回答
  •  [愿得一人]
    2021-01-22 08:34

    one thing i noticed in your code that you are writing in your model

    public var $validate=array();
    

    instead try

    public $validate= array() or var $validate=array();
    

    Validation should work after words. Thanks :)

提交回复
热议问题