As a journeyman Perl programmer i'm rather experienced in CGI applications and sessions. I've only recently began exploring PHP. As an experiment, I'm converting an existing Perl webapp to PHP and have yet to find a way to register all post/get variables to the session with one method. In Perl I could simply associate the CGI object with the session object and bam!, all CGI vars are saved in the session. Is there a native PHP method to do this that I haven't found? I currently use MySql to store my Perl CGI::Application session information. I would like to emulate the simplicity of this behavior in PHP. Any hints?
Thanks