in reply to CGI.pm questions...

You don't need to use both. Using qw/:standard/ just imports certain non-object methods into your script's namespace. If you're using the objects (as it looks like you are), there's no need to use qw/:standard/.

In fact, using CGI is sufficient to read and set cookies. You don't need to explicitly use CGI::Cookie.

Replies are listed 'Best First'.
Re: Re: CGI.pm questions...
by sierrathedog04 (Hermit) on Feb 10, 2001 at 00:18 UTC
    If the user wants to import all CGI methods (and doesn't mind the slight overhead) he can use CGI qw/:all/;