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
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..