• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Having Trouble Viewing Perl/CGI Scripts...

LordPhoenix

Golden Member
Hey.

I installed Active Perl in F:\Perl. I'm trying to open Perl files (.PL). This file is saved as "test.pl" with quotations. It was made in Notepad in ANSI mode. Why can't I see this?

Here is the script...

#!F:\Perl\bin\perl.exe -wT
use strict;
use CGI ':standard';

my $animal;
$animal = param('animal');

print "Content-type: text/html\n\n";
print "Show me the $animal";

---------------------------------------
 
Back
Top