in reply to Re^2: Cgi params as binary data
in thread Cgi params as binary data

With all the support out there for storing session data (including larger files), why the strong aversion to doing it the traditional way? If you need to maintain data across page loads, you're maintaining a session's state. CGI::Session helps with that. And it's just one of many. Also Apache::Session, and many others. Dealing with session data becomes simple if you use the right tool.


Dave

Replies are listed 'Best First'.
Re^4: Cgi params as binary data
by atey1 (Initiate) on Jun 05, 2011 at 03:21 UTC
    ooo! This might be exactly what I need....