Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] How does one persist data? Re:

From: joel:neely:fedex at: 11-Oct-2000 8:37

[Sharriff--Aina--med-iq--de] wrote:
> Does anyone have a soultion of persisting data across HTML pages? I want > data submitted through a CGI from a HTML form to be usable in other pages. > > Many thanks for the anticipated help guys > > Sharriff Aina > med.iq information & quality in healthcare AG
Two standard techniques: 1) return from the CGI script another form with the data as hidden fields; 2) within the CGI script, save the data (e.g. to a disk file) so that subsequent scripts can read it. -jn-