in reply to Re: carrying a lot of vars from page to page with hidden()
in thread carrying a lot of vars from page to page with hidden()
This is not really the way perl works as such, but more along the lines of the stateless nature of HTTP.
There are numerous ways to maintain state that include:
- Tied hash
- A database
- regular old file
- hidden fields in the page...
There are three main methods of branding a browser, cookies, in the URL and using hidden variables in your pages...
I wont go into detail, however, there is a wealth of information available all over the web, and here on perl monks.
In Section
Seekers of Perl Wisdom