Help for this page

Select Code to Download


  1. or download this
    my $cookie = $ENV{'HTTP_COOKIE'}; # if you wanna do this like that.
    @all = split(/\;/, $cookie);
    ...
        ($var, $value) = split(/=/);
        $values{$var} = $value;
    }
    
  2. or download this
    my $username = $values{'username'};
    my $password = $values{'password'};
    # now do whatever you want with them.