What would you do, if you would need to use both GT::CGI and the standard CGI.pm library?
I tried, and if both GT::CGI and CGI.pm is used, then CGI.pm will not working correctly, as it doesn't get the form inputs.
This line is causing the result, that CGI.pm will not able to get/parse the form input.
GT::CGI.pm, v1.140
This is somehow causing conflict between standard CGI.pm and GT::CGI
THis is the code I use to get input params:
print "\$q: " . Dumper(\$q) . "\n\n";
local (%in) = $q->Vars;
I also found a similar thread about GT::CGI and CGI.pm problem, but got no idea, what the problem is:
http://www.gossamer-threads.com/...i?post=109584#109584
Any idea, how to fix that compatibility problem?
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
I tried, and if both GT::CGI and CGI.pm is used, then CGI.pm will not working correctly, as it doesn't get the form inputs.
This line is causing the result, that CGI.pm will not able to get/parse the form input.
GT::CGI.pm, v1.140
Code:
line 97: read(STDIN, my $data, $content_length, 0);
THis is the code I use to get input params:
Code:
my $q = new CGI(); print "\$q: " . Dumper(\$q) . "\n\n";
local (%in) = $q->Vars;
I also found a similar thread about GT::CGI and CGI.pm problem, but got no idea, what the problem is:
http://www.gossamer-threads.com/...i?post=109584#109584
Any idea, how to fix that compatibility problem?
Best regards,
Webmaster33
Paid Support from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...