Hi Alejandro,

The CGI.pm docs spell out how to use multiple cookies:

  To create multiple cookies, give header() an array reference:
  
      $cookie1 = $query->cookie(-name=>'riddle_name',
              -value=>"The Sphynx's
              Question");
      $cookie2 = $query->cookie(-name=>'answers',
              -value=>\%answers);
      print $query->header(-cookie=>[$cookie1,$cookie2]);

HTH,
William

-- 
Knowmad Services Inc.
http://www.knowmad.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to