in reply to Re^8: RFC: Proposed tutorial - simple login script using CGI::Application
in thread RFC: Proposed tutorial - simple login script using CGI::Application
#!/usr/bin/perl use strict; #use warnings; use Encode qw( decode_utf8 ); use CGI; my $q= new CGI; use CGI::Carp qw(warningsToBrowser fatalsToBrowser); print $q->header( "text/html" ); print "Testing another page";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^10: RFC: Proposed tutorial - simple login script using CGI::Application
by Corion (Patriarch) on Jan 21, 2016 at 16:50 UTC | |
by Anonymous Monk on Jan 21, 2016 at 19:05 UTC |