On Tue, May 27, 2008 at 4:08 AM, mome <[EMAIL PROTECTED]> wrote: > What do you means by " Either get the session ID > yourself and pass it to CGI::Session->new()"? > Does it mean I can simply create the session ID from any way eventhough > hardcode e.g. 23asfsdfw22456 and pass it?
Your session ID is in a cookie, right? So read the cookie and get the session ID. There's nothing magical happening here. > At the moment, I also try Apache::Session and want to see if it can replace > CGI::Session There's nothing wrong with CGI::Session. Your POST data got lost because you were making CGI::Session read it. If you pass in a session ID or a query object, it will not need to read the POST data. - Perrin