Retrieving Cookies : Cookie « CGI « Perl






Retrieving Cookies

    


#!/usr/bin/perl -T

use strict;
use CGI qw/:standard/;

my $retrievedcookie = cookie('testcookie');

print header,
start_html,
p("cookie value was $retrievedcookie\n"),
end_html;

exit;

   
    
    
    
  








Related examples in the same category

1.A Simple Cookie Example
2.A Simple Cookie Example Using the CGI Module
3.Setting Cookie Expiration Without Using the CGI Module
4.Setting Cookie Expiration Using the CGI Module
5.Sending Multiple Cookies Using CGI.pm
6.Retrieving Multiple Cookies
7.Create cookie
8.Cookies and Session Tracking
9.Session tracking in our CGI scripts
10.Read cookie value
11.Program to read cookies from the client's computer
12.Time Period Abbreviations for the CGI Module's Header and Cookie Functions