in reply to Re^7: RFC: Proposed tutorial - simple login script using CGI::Application
in thread RFC: Proposed tutorial - simple login script using CGI::Application

How is this Perl code I could run?

  • Comment on Re^8: RFC: Proposed tutorial - simple login script using CGI::Application

Replies are listed 'Best First'.
Re^9: RFC: Proposed tutorial - simple login script using CGI::Application
by Anonymous Monk on Jan 21, 2016 at 16:12 UTC
    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";

      And where in this page do you issue the redirect?

        After successfully login