rajeshkumar created the topic: Setting Up Perl and CGI For Wamp Server WAMP(P)
chromicdesign.com/2009/05/setting-up-perl-for-wampp.html
Test.pl/test.cgi
#!C:\Perl64\bin\perl.exe
# test.cgi by Bill Weinman [http://bw.org/]
# Copyright 1995-2009 The BearHeart Group, LLC
# Free Software: Use and distribution under the same terms as perl.
use strict;
use warnings;
use CGI;
my $version = "5.1";
print foreach (
"Content-Type: text/plain\n\n",
"BW Test version $version\n",
"Copyright 1995-2009 The BearHeart Group, LLC\n\n",
"Versions:\n=================\n",
"perl: $]\n",
"CGI: $CGI::VERSION\n"
);
my $q = CGI::Vars();
print "\nCGI Values:\n=================\n";
foreach my $k ( sort keys %$q ) {
print "$k [$q->{$k}]\n";
}
print "\nEnvironment Variables:\n=================\n";
foreach my $k ( sort keys %ENV ) {
print "$k [$ENV{$k}]\n";
}
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024