Question:Which is the correct syntax of defining CakePHP form helper?
A public $helper=array('Form'); B public $helper='Form'; C public $helpers=array('Form'); D $this->helper=array('Form');
+ AnswerC
+ Report