Re: [cgiapp] $self-param misunderstanding

2002-06-13 Thread Brett Sanger
use CGI qw/:standard/; Don't use this, CGI::App handles CGI for you. (you can get the CGI object via $self-query()) I suspect param() is getting mangled somewhere along the line. Remove the use CGI line and try again. -

Re: [cgiapp] $self-param misunderstanding

2002-06-13 Thread fyzicle feecher
That did it. I figured it was something simple. Thanks! --- Brett Sanger [EMAIL PROTECTED] wrote: use CGI qw/:standard/; Don't use this, CGI::App handles CGI for you. (you can get the CGI object via $self-query()) I suspect param() is getting mangled somewhere along the line. Remove