MyBB Community Forums

Full Version: Date
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I've some problems with the "date format".
I've added in my profile field: 16 / 08 / 1989
(So I am 16 years old, but the forum 'changed it' to 16 / 08 / 1988 to have 16 years). How to adapt this?
Hmm, even if I set the default lang on English.
Is your server time correct?
Good question.. How can I see THAT? Toungue
Upload a php file with the following content to your webspace and see if it returns the correct time and date in your browser.
<?php
$now = date("d.m.Y H:i");
$gmttime = gmdate("d.m.Y H:i");
echo "It is: ".$now;
echo "<br />GMT: ".$gmttime;
?>
I get the following:

It is: 24.01.2006 17:36
GMT: 24.01.2006 16:36

(That one above is correct, with a difference of 2 minutes).
What now? Sad