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

vpage.cgi - perl code
#!/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";
  • Comment on Re^9: RFC: Proposed tutorial - simple login script using CGI::Application
  • Download Code

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

    And where in this page do you issue the redirect?

      After successfully login