Unsticky fields with CGI?

2005-03-11 Thread Jan Eden
Hi, how can I turn off stickiness for CGI's HTML methods. Example: I call a script with parameter mode=new and the following line print $q-hidden('mode', 'slurp'); prints out input type=hidden name=mode value=new / instead of input type=hidden name=mode value=slurp / I tried the

Re: Unsticky fields with CGI? (Sorry)

2005-03-11 Thread Jan Eden
Hi, should have read perldoc *thoroughly*, sorry: Note, that just like all the other form elements, the value of a hidden field is sticky. If you want to replace a hidden field with some other values after the script has been called once you'll have to do it manually:

Re: Unsticky fields with CGI? (Sorry)

2005-03-11 Thread Randal L. Schwartz
Jan == Jan Eden [EMAIL PROTECTED] writes: Jan Hi, Jan should have read perldoc *thoroughly*, sorry: Note, that just like all the other form elements, the value of a hidden field is sticky. If you want to replace a hidden field with some other values after the script has been called once