Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
for the errors, I'm using:use CGI;
Now, the cookie documentation says I need to use:use CGI::Carp qw/fatalsToBrowser/;
Now, is use CGI qw/:standard/ the same as use CGI? I mean, if I use the qw/:standard/, will it do the same for forms as would the regular use CGI; or would I have to put this:use CGI qw/:standard/; use CGI::Cookie;
use CGI qw/:standard/; use CGI::Cookie; use CGI; $query = new CGI;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI.pm questions...
by eg (Friar) on Feb 09, 2001 at 23:56 UTC | |
by sierrathedog04 (Hermit) on Feb 10, 2001 at 00:18 UTC | |
|
Re: CGI.pm questions...
by tadman (Prior) on Feb 10, 2001 at 02:26 UTC | |
|
Re: CGI.pm questions...
by extremely (Priest) on Feb 10, 2001 at 10:29 UTC | |
|
Re: CGI.pm and cookies
by flocto (Pilgrim) on Feb 10, 2001 at 09:31 UTC |