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

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