Setting Up Perl and CGI For Wamp Server WAMP(P)

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

Rajesh Kumar
Follow me
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x