Iam new in cakephp ,I need to validate a form.
This is the code: Controller:
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 :)