in reply to Re: NDBM_File won't store data
in thread NDBM_File won't store data
Here is the MakeDate sub:
sub MakeDate { my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localti +me(time); $year = ($year + 1900) ; $mon++ ; my $date = sprintf("%04D%02d%02d", $year, $mon, $mday); return $date; }
That should be a string right??
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: NDBM_File won't store data
by dash2 (Hermit) on Sep 01, 2003 at 13:17 UTC |