Hi Stas,

Just a small point, maybe there's a place for it in the Guide?.

The following doesn't work

use integer;
use CGI::Cookie;
my $q = new CGI::Cookie( -name => ... );

because the `-' in `-name' is misinterpreted as a negative sign.

To get it to work, write

my $q = new CGI::Cookie( '-name' => ... );


Aaarrgghh.

73,
Ged.

Reply via email to