Help for this page

Select Code to Download


  1. or download this
    my $cookie = 'name1,value1,name2,value2';
    my %hash = split(',', $cookie);
    
  2. or download this
    my $cookie = '("Name1","Value1","Name2","Value2")';
    my %hash = eval $cookie;