in reply to Re: CGI Module
in thread CGI Module
package forms; use strict; use warnings; use CGI; sub new { my ($class) = @_; my $self = {_form => undef}; bless $self,$class; return $self; } sub fetch { my ($self) = @_; $self->{_form} = new CGI; return $self->{_form}; } 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: CGI Module
by brian_d_foy (Abbot) on Jun 05, 2005 at 04:11 UTC | |
|
Re^3: CGI Module
by tlm (Prior) on Jun 05, 2005 at 04:03 UTC | |
by Anonymous Monk on Jun 05, 2005 at 04:13 UTC |