You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Matthias Hanns <mh...@ncsc.de> on 2000/08/25 17:19:13 UTC

how to set more then one cookie

Hi all together,

when I want to set one cookie I use the following way:

...
my $cookie = CGI::cookie( ... );     # or with OO: my $q = new CGI; my
$cookie = $q->cookie( ... );
...
print CGI::header($cookie);
...

Now my question: How I can set more then one cookie? Any hints, where I can
read or how to do?
Thnx, Matthias