Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: carrying a lot of vars from page to page with hidden()

by Ryszard (Priest)
on Feb 01, 2003 at 08:38 UTC ( #231815=note: print w/replies, xml ) Need Help??


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:

  1. Tied hash
  2. A database
  3. regular old file
  4. hidden fields in the page...
In fact any method of retrieving the data can be used. The interesting part of maintaining state come along when you want to retrieve the data associated with a particular "session". You have to work out a method of branding the browser, then retrieving that branding and associating it with the data you've stored server side.

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.

  • Comment on Re: Re: carrying a lot of vars from page to page with hidden()

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://231815]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2023-09-24 21:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?