Use the following code where you want a clock to show up.
Anything behind the // is a comment, so you can delete those if you want.
| Code: |
| <?PHP
$time_offset ="0"; // you many need to change this to accomidate server time offset $adj = ($time_offset * 120); // some simple math here. $time = date(" h:i:s",time() + $adj); // remove seconds by simply gettting rid of the :s echo "$time"; ?> |
Anything behind the // is a comment, so you can delete those if you want.
