Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. use strict;
  2. use CGI qw/:standard/;
  3. use CGI::Cookie;
  4.  
  5. my $cgi = new CGI;
  6. my $ck = $cgi->cookie('phpcookie');
  7.  
  8. use strict;
  9. use Data::Dumper;
  10. use CGI qw/:standard/;
  11.  
  12. my $cgi = new CGI;
  13. my @arr = $cgi->cookie();
  14. print Dumper @arr;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement