Re: CGI bug

2006-10-06 Thread W.P.Nijhof
Rob Dixon wrote: values after the script has been called once you'll have to do it manually: param('hidden_name','new','values','here'); You can also do this: $q->hidden( -name=>'x', -value=>$x, -override=>1 ) WayPay -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: CGI bug

2006-10-05 Thread Rob Dixon
Jeremy Kister wrote: > > Using an older (unknown version) and brand new (3.25) CGI, I have been > able to demonstrate a simple bug: > > use strict; > use CGI qw(:standard); > > my $q = new CGI(); > > my $x = $q->param('x'); > my $y = ($x + 1); > > print $q->header(), $q->start_html(), > $q->

Re: CGI bug

2006-10-05 Thread John W. Krahn
Jeremy Kister wrote: > Using an older (unknown version) and brand new (3.25) CGI, I have been > able to demonstrate a simple bug: There is a beginners-cgi list that deals with Perl and CGI issues: http://lists.cpan.org/showlist.cgi?name=beginners-cgi And if you are reporting a bug in CGI: perldo

CGI bug

2006-10-05 Thread Jeremy Kister
Using an older (unknown version) and brand new (3.25) CGI, I have been able to demonstrate a simple bug: use strict; use CGI qw(:standard); my $q = new CGI(); my $x = $q->param('x'); my $y = ($x + 1); print $q->header(), $q->start_html(), $q->hidden('x',$y), "\n", $q->hidden('a',$