Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: CGI::Application Error

by chipmunk (Parson)
on Nov 18, 2001 at 10:11 UTC ( [id://126096]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub new {
      my $self = shift;
      my $q = $self->query();
    ...
    
      return $output;
    }
    
  2. or download this
    sub new {
      my $class = shift;
      my %data = { 'member data' => 'initial value' };
      return bless \%data, $class;
    }
    
  3. or download this
    sub new {
      my $class = shift;
      my $self = $class->SUPER::new();  # call CGI::Application's new meth
    +od
    
      # do your own initialization, as desired
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-23 19:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found