Using perl Syntax Highlighting
#!/bin/perl
use CGI;
$query = new CGI;
print $query->header;
print $query->start_html('Leer Cookie');
print $query->h3('The cookie is ...');
$theCookie = $query->cookie('DokuWiki');
print "\n"; print $theCookie; print "\n";
print $query->end_html;
use CGI;
$query = new CGI;
print $query->header;
print $query->start_html('Leer Cookie');
print $query->h3('The cookie is ...');
$theCookie = $query->cookie('DokuWiki');
print "\n"; print $theCookie; print "\n";
print $query->end_html;
Coloreado en 0.002 segundos, usando GeSHi 1.0.8.4
Estuve viendo el http://perlenespanol.com/tutoriales/cgi/aprendiendo_a_usar_cookies.html pero tampoco me funciona y creo que es por que no entiendo bien lo que hace.
¿Alguien tiene alguna idea de cómo leer rápidamente con un sencillo script una cookie? Muchas Gracias