in reply to Re: [OT] Use a Storage.pm object without Perlin thread [OT] Use a Storable.pm object without Perl
#!/usr/bin/perl use CGI; use YAML; $q = CGI->new; $q->param(sex,'good'); print Dump($q); $d = Dump($q); $re = Load($d); print Dump($re); [download]