you can pass the session id on the url (preferably with a named parameter, suppose session_id) and in the app_controller use the Session component:
$this->Session->id($this->params['named']['session_id']); There are other ways using the session name in core etc .... also On Apr 12, 12:07 am, OldWest <[email protected]> wrote: > I am looking for suggestions on a sensible Cake approach to creating a > session id based url that I can share with others to see the same search > results I am seeing on my end. > > I know in standard php, I would just get the session id and pass it to the > url. But my guess Cake probably has a method or approach for this exact > thing (my guess). I have not been able to locate anything specific yet. > > Any ideas as to the best approach to this with Cake methods? Or will I need > to re-invent the wheel on this? -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
