MyBB Community Forums

Full Version: can I show only current time?...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi; firstly sorry for my poor english...

I wanna show the time, but not like $lang->welcome_current_time format; only time... I know if I edit the global_lang.php I can do it...but I'm making a new theme and I must try to another way to do this...

I looked the global.php and tried this codes;

{$globaltime}, {$timenow}, {$time} but I can't show the current time... do you know what is the right code...
You can add a variable in global.php at the end,

$time = date("g:i a"); //Displays 5:16 pm (Or whatever the time it is)

And then you can use the variable {$time} in any template

Edit: Also note that this will display the time where the server is located. Not the time from the user viewing it


Second edit: You don't add the variables {$var} in global.php. You add those in templates.
I tried your solution, but I didn't do it... and than I used a script...

thanks for your answer...