On Jul 31, 1:31 pm, [EMAIL PROTECTED] (Jackson Samson) wrote: > I have downloaded the CGI.pm to my Windows machine. Do I need a C > compiler to build this or can I use ppm install CGI.pm?
Neither. CGI is a core Perl module. Nothing external needs to be installed. You had no reason to download CGI.pm. Just use it: #!/usr/bin/perl use strict; use warnings; use CGI; # . . . Paul Lalli -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/