Display Time

Dismounted

59.***.***.***
1,958 days ago

Display Time

Display Time Add this code where you want the time to be displayed.

PHP code:

<?php $time_offset = "0"; // Change to your local time offset from the servers time $adj = ($time_offset * 120); // Adjustments...dont mess! $time = date(" h:i:s",time() + $adj); // to remove seconds simply get rid of the :s echo ("" . $time . ""); ?>