in reply to Maintaining state through storable.pm?
I use a very similar method, cept for extra security I also use the stuff from http://pajhome.org.uk/crypt/index.html to get the user submitted pwd across safely (I don't have SSL).
I use BerkeleyDB for the DB backend && it goes something like this:
$my_cool_db{'some_key'} = freeze({what=>'ever'});
my $var = thaw($my_cool_db{'some_key'});
|
|---|