> > I use Perl gmttime() to obtain UTC Time (formerly > known as GMT Time) and unfortunately, value returned > does not match official UTC time format: > > Official UTC Time Format = YYMMDDHHMMZ > > and here is what I get from gmtime() API= > 7321826610252060 >
This is how many seconds pasted from 1900. You'll handle this with an array : @tm = gmtime(); Inside @tm, they are : second, minute, hour, day, month, year, weekday, day of year, ... for more reference : perldoc -f gmtime Rgds, Connie -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]