I've figured out how to set a cookie, and I think I've retrieved it
successfully (no errors, at least), but now how do I manipulate it? I can't
figure out how to reference the cookie data.

Here's an example of my code:

use CGI;
$q = new CGI();
$myCookie = $q->cookie(-name=>'Fyre',
                       
-value=>test,
                       -expires=>'+3M',
                       
-domain=>'.biola.edu');
print $q->header(-cookie=>$myCookie);

%cook = 
$q->cookie(-name=>'Fyre'); 


Now what?

-John Stokes

Reply via email to