Looking for the most efficient way to do the following:
Details:
1 controller:
- Reports
2 views:
- create_report
- view_report
create_report has a form where information is collected that will be used in the view_report view. I know the data entered in the form is available within the create_report view via the $this->session->data element.
Looking for Help on This:
What I need to do is send that same info ($this->session->data) from the create_report view to the view_report view (through the controller, I assume).
What I have so far:
Just a link:
echo $this->Html->link('View Report', array('controller' => 'reports', 'action' => 'view_report'));
But this only takes the user to the view_report view. It doesn't send the info in $this->session->data to that view.
I am thinking it has something to do with the Js helper, but I wasn't able to find any posts dealing directly with this situation for CakePHP 2.x.