in reply to
Re: Re: add to localtime?
in thread
add to localtime?
localtime()
returns either an array of numbers representing seconds, minutes, hours, etc., or a string that represents date/time in a human readable form.
What you need there is
time()
, not
localtime()
.
--perlplexer
Comment on
Re: Re: Re: add to localtime?
Replies are listed 'Best First'.
Re: add to localtime?
by
powerhouse
(Friar)
on Apr 27, 2003 at 04:44 UTC
Excellent, time() worked! Thank you!!!
thx,
Richard
[reply]
In Section
Seekers of Perl Wisdom