icon Get the most out of Surmunity, read our tips here! Need an interesting blog to read? You've got to read the Surpass Blog! | Welcome! Please register to access all of our features.
Old October 2nd, 2006, 3:41 PM   #1 (permalink)
Registered User
Fresh Surpasser
 
pawe's Avatar
 
Joined in Jun 2006
14 posts
Gave thanks: 0
Thanked 0 times
Timezone

Hi guys!

I use this to put datetime into my scripts.

Code:
<?php echo date('y-m-d H:i:s'); ?>
And this to write them on a page...

Code:
<?php echo date($s['date_format'], strtotime($row_news['date'])); ?>
But I need to change the timezone in some how? But I can't make it. Iam in sweden and the time is'nt really the same here

Does someone know how I should do?

Any thoughts is appreciated!

Best regards, Patrik
__________________
OC10 - pass61
pawe is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old October 2nd, 2006, 4:20 PM   #2 (permalink)
Surpass Fan
Excelling Contributor
 
cowboy's Avatar
 
Joined in Nov 2005
Lives in Colorado
Hosted on DEDI
937 posts
Gave thanks: 2
Thanked 95 times
Quote:
Originally Posted by pawe View Post
...
Code:
<?php echo date($s['date_format'], strtotime($row_news['date'])); ?>
But I need to change the timezone in some how? But I can't make it. Iam in sweden and the time is'nt really the same here ...
For -8 hours timezone offset:
PHP Code:
<?php echo date($s['date_format'], strtotime($row_news['date']."- 8 hours")); ?>
See http://www.php.net/manual/en/function.strtotime.php for more info.
__________________
Where would you be if you were at the highest court in the land (US)?
cowboy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old October 2nd, 2006, 4:46 PM   #3 (permalink)
Registered User
Fresh Surpasser
 
pawe's Avatar
 
Joined in Jun 2006
14 posts
Gave thanks: 0
Thanked 0 times
Great!

Thank you very much!!!!!!!!!!!!!!
__________________
OC10 - pass61
pawe is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On