CakePHP : Validation message not displaying

前端 未结 3 1516
暗喜
暗喜 2021-02-06 17:19

I\'m new to cakePHP and I\'ve made a simple form following some tutorial. On this html form I\'ve used validation. Now the problem is that the validation is working but the mess

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-06 18:06

    From your code what i can see is that you havent included helpers.

    public $helpers = array('Html', 'Form', 'Session');
    public $components = array('Session');
    

    Just add to your controllers and try..

提交回复
热议问题