Todd W wrote:
"Scott R. Godin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
[snip]
able to simply add ?step=confirm or ?step=finish to the form action
( -action=>"$htmlform{action}?step=confirm", ... )

[snip]
You could refer to the CGI.pm docs, specifically the part about mixing POST
and URL parameters:

http://search.cpan.org/~lds/CGI.pm-3.11/CGI.pm#MIXING_POST_AND_URL_PARAMETERS

if ($q->url_param('step') eq 'confirm' ) {
  ...
}
[snip]

ahh url_param() ... had quite forgotten about that one. I was trying to avoid the use of 'hidden' fields if at all possible. This should do nicely. Thanks for the tip.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to