MyBB Community Forums

Full Version: Current time?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I show current server time shown in the header of the forum in my php page?


define("IN_MYBB",1);
include("global.php");
Use time()

Then you have to assign a new var to set this value, maybe can use some function by default like function of date.
Thanks buddy found the solution:

// Set the current date and time now
$datenow = my_date($mybb->settings['dateformat'], TIME_NOW, '', false);
$timenow = my_date($mybb->settings['timeformat'], TIME_NOW);
$lang->welcome_current_time = $lang->sprintf($lang->welcome_current_time, $datenow.', '.$timenow);