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

URGENT CGI help needed.

 [1/4] from: louisaturk:coxinet at: 5-Apr-2003 3:12


Hi fellow rebols, I want a value from system/options/cgi/query-string from a form to persist from page to page through several cgi generated html pages so users don't have to retype information. How can I do this? Louis

 [2/4] from: c::brizell::worc::ac::uk at: 5-Apr-2003 11:12


Pass it with the HIDDEN tag <input type=hidden name='hidden_field_name' value='hidden_field_value> replace hidden_field_name and hidden_field_value with whatever you want colinb

 [3/4] from: hallvard:ystad:helpinhand at: 5-Apr-2003 12:06


Once you get a value from one html page, write it out in the form on the next page as <input type="hidden" name="name" value="value">. So you get it back. ~H Dixit Louis A. Turk (11.12 05.04.2003):

 [4/4] from: louisaturk:coxinet at: 5-Apr-2003 6:39


Colin and Hallvard, Many thanks! I'm past that problem and heading for the next one. :>) Louis At 12:06 PM 4/5/2003 +0200, you wrote: