Well, maybe I'm wrong here, Philip, but if you've gotten to some cake
classes externally, then you could just use Cake's Session object to
set your session. If you write it with cake, you should be able to
read it:
something like this on your CMS side:
------------------
$cakeSession = new Session();
$cakeSession->write( 'ee_member', sha1('ee_member'));
$count = $cakeSession->read('count');
$cakeSession->write('count', $count + 1);
-------------
Then just use $this->Session->read('ee_member'); or $this->Session-
>read('count');
like your example above...
Jeff
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---