コントローラから他のビューにデータを送信するにはどうすればよいですか?
function index()
{
if(!empty($this->data))
{
$projects = $this->Hour->getProjectsByDate($this->data);
**//here I have to redirect $projects to another view.**
}
$this->set('projects', $this->Project->find('list', array('conditions' =>
array('Project.active' => true))));
}
ありがとうございました!:)