in reply to Date and Time

The problem probably isn't that the server in England is wrong, but that your in a different time zone. Something like this might help you get your local time:

my $date_england = time ; my $tz_offset = -8 ; my $date_pacific = time + ( $tz_offset * 3600 ) ; print "England: ", scalar localtime( $date_england ), $/ ; print "Pacific: ", scalar localtime( $date_pacific ), $/ ;

_______________
DamnDirtyApe
Those who know that they are profound strive for clarity. Those who
would like to seem profound to the crowd strive for obscurity.
            --Friedrich Nietzsche