Well, no!
This ebay site shows at the same moment the time in Europe and in USA/Pacific,
so there should not be any difference! Beside that, while
$time{brdTi1} = scalar localtime($time{brdSec}); $time{brdTi2} = scalar localtime($time{brdSec}-$time{brdOFF});
shows exact time for MEZ:
brdDay => 05 Jan 2005 brdTime => 09:50:04 brdOFF => 3600 brdSec => 1104918604 brdTi1 => Wed Jan 5 10:50:04 2005 brdTi2 => Wed Jan 5 09:50:04 2005 brdTiZo => MEZ
the same code:
$time{usaTi1} = scalar localtime($time{usaSec}); $time{usaTi2} = scalar localtime($time{usaSec}-$time{usaOFF});
for PST shows this:
usaDay => 05 Jan 2005 usaTime => 00:50:04 usaOFF => -28800 usaSec => 1104915004 usaTi1 => Wed Jan 5 09:50:04 2005 usaTi2 => Wed Jan 5 17:50:04 2005 usaTiZo => PST
Any Ideas?
Carl

In reply to Re^2: TimeZone Error? by Anonymous Monk
in thread TimeZone Error? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.