Hello Friends,
How do I display a custom Datestamp and Timestamp on the Navigation bar that will automatically updates with vBulletin Date/Time stamp php functions?
See below picture for detail position and format:
Any ideas on how to make this work? I couldn't find any mod or anyone who has raised similar topics.
This is a php script that I have tested in my server and it works, but I do not know where to include it on the navigation bar as on the image:
PHP Code:
<?php
$hourdiff = "8"; // hours diff btwn server and local time
$vbdate = date("l, d F Y - h:i A", time() + ($hourdiff * 3600));
print ("$vbdate");
?>
This is return message:
Please advise.