in reply to Re: Re: Re: Cookies problem
in thread Cookies problem
If anyone else is a dumb as me, here's the solution.
Back to the books Thanks again!#!/usr/bin/perl use CGI qw/:standard/; use strict; use warnings; $user='user1'; $cookie1 = cookie(-name=>'user', -value=>"$user", -expires=>'+1h'); -path => '/', print header(-cookie=>$cookie1);
|
|---|