
Louis Mc
Deleted
Apr 17, 2000, 1:33 PM
Post #1 of 2
(295 views)
|
|
Syntax error here, can't see why
|
Can't Post
|
|
I keep getting this error: "syntax error at /usr/siteadm/acme/cust.cgi line 130, near "$input ("") The code, starting at line 128: my @HTML; for my $input (sort @input) { $input =~ /ACCRC/ or next; my($vend_id, $response_cd, $mdl_id) = unpack 'A3A2A3', $input; my $HTML = <<END_OF_HTML; <CENTER> <TABLE WIDTH=600> <TR> <TD> $vend_id <BR> $response_cd <BR> $mdl_id <BR> You should use your browser's bookmarks to go to your next page. </TD> </TR> </TABLE> END_OF_HTML push @HTML, $HTML; }
|