hi,
I have a problem with cookies in perl. I have created the cookie in the following way :
-----------------
my $cgi = new CGI;
my $cookie= $cgi->cookie(-name=>"usrid",
-value=>"usname",
-path=>"/cgi-bin/"
;
----------------
I want to know how to 'change the value' and 'to destroy' this cookie in any other script that I execute in the same session.
I have a problem with cookies in perl. I have created the cookie in the following way :
-----------------
my $cgi = new CGI;
my $cookie= $cgi->cookie(-name=>"usrid",
-value=>"usname",
-path=>"/cgi-bin/"
----------------
I want to know how to 'change the value' and 'to destroy' this cookie in any other script that I execute in the same session.