Re: CGI.PM and hidden()
- From: xhoster@xxxxxxxxx
- Date: 15 Apr 2008 17:08:51 GMT
dtshedd@xxxxxxxxx wrote:
I am trying to replace this
print "<input type=\"hidden\" name=\"page\" value=$page>\n";
with this
print hidden(-name=>"page", -value=>$page);
problem is that the new line does not print the correct value of $page
(its supposed to change every pass through the perl code),
CGI has "sticky" fields. The value that was just submitted has priority
over the the value specified by -value.
This is usually a good thing. If someone's submission is malformed in one
field, and you need to tell them to change it and resubmit, you want
the new page to retain their previous selections rather than forcing them
to start over with the original defaults (although this argument is less
compelling in the case of hidden fields.)
To change this default behavior for an individual field, specify
-override => 1
You can also turn it off globally by using -nosticky when CGI is "use"d.
I have
tried enclosing the contents of the hidden() command in "{}" but this
made no difference. I am not sure what the role of these brackets
are, some syntax shows them present and other forms of the syntax
shows them absent.
CGI offers an absurd amount of flexibility in how parameters are passed
to it's methods/functions. The list-vs-hash is part of that. It shouldn't
change the behavior.
Xho
--
-------------------- http://NewsReader.Com/ --------------------
The costs of publication of this article were defrayed in part by the
payment of page charges. This article must therefore be hereby marked
advertisement in accordance with 18 U.S.C. Section 1734 solely to indicate
this fact.
.
- References:
- CGI.PM and hidden()
- From: dtshedd
- CGI.PM and hidden()
- Prev by Date: Acheter propecia en ligne
- Next by Date: Re: use modules OS dependent
- Previous by thread: Re: CGI.PM and hidden()
- Next by thread: CGI.PM and print table
- Index(es):
Relevant Pages
|
|