hi all,
im stuck on a simple form using cgi-lib.pl. i keep getting a CGIWrap
error:
execution failed.
im a novice perl guy so everything seems right to me, can
someone tell me what im doing wrong?
the scripts and the asp page passing the variables are both on
a linux machine.
thanks,
pete
----------------------------------------
#!/usr/local/bin/perl
require 5.001;
use strict;
require "./cgi-lib.pl";
MAIN:
{
my (%input);
# Read variables
&ReadParse(\%input);
# Print the header
print &PrintHeader;
print &HtmlTop ("testing");
print <<ENDOFTEXT;
symbol: $input('symbol') charttype: ('charttype') <br>
bbands: $input('ma')<br>
time period: $input('maxquote')<br>
volume: $input('volume')<P>
# Close .
print &HtmlBot;
}
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]