- Session and state...: Use CGI::Session. If you check the perldoc it will accomodate files and MySQL (from the perldoc):
$session = new CGI::Session(undef, undef, {Directory=>'/tmp'});
$session = new CGI::Session("driver:File;serializer:Storable", undef
ry=>'/tmp'})
$session = new CGI::Session("driver:MySQL;id:Incr", undef, {Handle=>
- Nice charts...: You might try GD::SVG.
Celebrate Intellectual Diversity
| [reply] [d/l] |
ad Session:
Think about BerkleyDB, this is very usefull for tie-ying (oh, my English...) and storing on the fly. You can, for instance, serialize perl structures by Data::Dumper and store it as plain text... But if you need some concurrency, the SQL engines are much more better for maintenance reasons. We typically develops hand made session management for every web application because different requirements.
| [reply] |