in reply to Printing BigInts
Data::Dumper is often your friend in these circumstances:$c = new CGI::Cookie(-name => 'NetAppliance1.0', -value => "$id", -path => '/cgi-bin/' -secure => 0 );
produces:use Data::Dumper; print Dumper({-value => $id});
Which is a good indication that things are not as you thought :-)$VAR1 = { '-value' => bless(do {\(my $o= '+123456789123456789')}, 'Mat +h::BigInt') };
Andrew. (You should really be using CGI.pm throughout)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Printing BigInts
by Anonymous Monk on Jul 12, 2000 at 21:17 UTC | |
by chromatic (Archbishop) on Jul 12, 2000 at 21:49 UTC |