in reply to CGI object already instantiated?
Try this:
my $cgi = CGI->new({});
This tells CGI to make a new query object using the data from the anonymous hash you passed. Since there isn't any data, you get a new, empty query.
See the documentation for the CGI::new method for more complete information.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(Ovid) RE: RE: CGI object already instantiated?
by Ovid (Cardinal) on Nov 13, 2000 at 01:20 UTC | |
|
(Ovid) RE: RE: CGI object already instantiated?
by Anonymous Monk on Nov 13, 2000 at 01:15 UTC |