Re: using CGI within Embperl

2002-09-04 Thread Luiz Fernando B. Ribeiro
Em Tue, 3 Sep 2002 12:18:47 -0700 "Mark Dedlow" <[EMAIL PROTECTED]> escreveu: > I'm want to drop some existing code that uses CGI.pm into Embperl, > but Embperl grabs POST'ed data, so CGI doesn't have it. By changing > my 'new CGI()' statements to 'new CGI(\%fdat);', my existing CGI-based > code

Re: using CGI within Embperl

2002-09-03 Thread Gavin Carr
Try adding 256 to your EMBPERL_OPTIONS: optDisableFormData = 256 This option disables the setup of %fdat and @ffld. Embperl will not do anything with the posted form data. Set this when using Execute from your perl script and you have

using CGI within Embperl

2002-09-03 Thread Mark Dedlow
I'm want to drop some existing code that uses CGI.pm into Embperl, but Embperl grabs POST'ed data, so CGI doesn't have it. By changing my 'new CGI()' statements to 'new CGI(\%fdat);', my existing CGI-based code seems to work as expected. Is this the way other folks approach the issue, or is ther