in reply to HTML::Template and authenticated sessions
You should check out CGI::Session. I personally would not suggest the use of a cookie as a session tracking thingie. I mean, there is always the possibility of the client side (can be a script, browser) not accepting cookies. It is relatively easy to track sessions using server side logic. Based on your session ID (which uniquely identifies each user), you can then output different HTML templates. You would of course have to decide on a convenient naming scheme for your template files, or you could generate these templates in your Perl script itself (based on session ID)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTML::Template and authenticated sessions
by dragonchild (Archbishop) on May 10, 2005 at 17:53 UTC | |
by Joost (Canon) on May 10, 2005 at 19:43 UTC | |
by BUU (Prior) on May 11, 2005 at 08:25 UTC |