Google News
logo
CakePHP - Interview Questions
How to include Helpers in Controller?
You can include Helpers in controller by using this command :
public $helpers = array('Form', 'Html', 'Js', 'Time');​
In specific action use below code :
$this->helper[] ="helper_name";  
Advertisement