Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: CGI::Application - why?

by cees (Curate)
on May 15, 2006 at 21:12 UTC ( [id://549611]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use CGI qw(:standard);
    
    ...
    }
    
    # do some footer stuff here
    
  2. or download this
    if ($page eq 'list_products') {
      list_products();
    ...
    sub list_products {
      print '...';
    }
    
  3. or download this
    %pages = (
      list_products => \&list_products,
    ...
    sub list_products {
      print '...';
    }
    
  4. or download this
    use base qw(CGI::Application);
    
    ...
      my $self = shift;
      return '...';
    }
    
  5. or download this
    use base qw(CGI::Application);
    use CGI::Application::Plugin::AutoRunmode;
    ...
      my $self = shift;
      return '...';
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://549611]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (10)
As of 2024-04-19 08:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found