Revision: 1518
Updated Code
at October 14, 2006 22:41 by section31
Updated Code
#!/usr/local/bin/perl -wT # force taint checks, and print warnings use strict; # install all three strictures use CGI ':standard'; use Data::Dumper; use CGI::Carp qw(fatalsToBrowser warningsToBrowser); $|++; # force auto flush of output buffer print "Content-type: text/html\n\n"; # Make Sure you're only using Unix Line Feeds. print "Hello World";
Revision: 1517
Updated Code
at October 14, 2006 22:18 by section31
Updated Code
#!/usr/local/bin/perl -wT use strict; use CGI ':standard'; use Data::Dumper; use CGI::Carp qw(fatalsToBrowser warningsToBrowser); print "Content-type: text/html\n\n"; # Make Sure you're only using Unix Line Feeds. print "Hello World";
Revision: 1516
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 14, 2006 22:17 by section31
Initial Code
#!/usr/local/bin/perl -wT use strict; use CGI ':standard'; use Data::Dumper; use CGI::Carp qw(fatalsToBrowser warningsToBrowser); print "Content-type: text/html\n\n";
Initial URL
Initial Description
Initial Title
New Perl Document
Initial Tags
Initial Language
Perl