CGI.pm


CGI.pm is a large and once widely used Perl module for programming Common Gateway Interface web applications, providing a consistent API for receiving and processing user input. There are also functions for producing HTML or XHTML output, but these are now unmaintained and are to be avoided. CGI.pm was a core Perl module but has been removed as of v5.22 of Perl. The module was written by Lincoln Stein and is now maintained by Lee Johnson.

Examples

Here is a simple CGI page, written in Perl using CGI.pm :

  1. !/usr/bin/env perl
use strict;
use warnings;
use CGI;
my $cgi = CGI->new;
print $cgi->header;
print << "EndOfHTML";



A <a href="/wiki/Simple">Simple</a> CGI <a href="/wiki/Page">Page</a>



A Simple CGI Page



Name:

Age:






EndOfHTML
if
if
print '';

This would print a very simple webform, asking for your name and age, and after having been submitted, redisplaying the form with the name and age displayed below it. This sample makes use of CGI.pm's object-oriented abilities; it can also be done by calling functions directly, without the $cgi->, however the necessary functions must be imported into the namespace of the script that requires access to those functions:

  1. !perl
use strict;
use warnings;
use CGI qw/ :standard /;
print header;
  1. ... HTML output same as above example
if
if
print '';

Note: in many examples, short for query, is used to store a CGI object.