How can I send data to other view from controller?
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))));
}
Thank you! 🙂
Try adding this after your
$this->set('projects', $this->Project->find('list', array('conditions' =>:array('Project.active' => true))));
$this->render('whatever view you want');Don’t forget to set your variables before you render a different view: