Jump to content

[SOLVED] dynamic local time


DeanWhitehouse

Recommended Posts

Tried that, but i couldn't work out what to echo.

can anyone help, this is the code the site suggested.

if ( !isset($_SESSION['GMT_offset']) ) {
  $_SESSION['GMT_offset'] = 0;
  $_SESSION['GMT_offset_str'] = '+0:00';
}
if ( isset($_GET['offset']) ) {
  $_SESSION['offset'] = $_GET['offset'];
  set_timezone($_GET['offset']);
}
function set_timezone( $offset ) {
  if ( $offset ) {
    $offset = -$offset;
    $_SESSION['GMT_offset'] = 60 * $offset;
    $GMT_offset_str = ( $offset > 0 ) ? '+' : '-';
    $GMT_offset_str .= floor($offset / 60) . ':';
    $GMT_offset_str .= (($offset % 60) < 10 ) ?
      '0' . $offset % 60 : $offset % 60;
    $_SESSION['GMT_offset_str'] = $GMT_offset_str;
  }
}
function format_datetime( $date ) {
  return ( date('d M Y g:ia', $date + $_SESSION['GMT_offset']) .
  ' GMT ' . $_SESSION['GMT_offset_str']);
}

Here's some javascript that will work perfectly ;):

<html>
<head>
<script type="text/javascript">
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout('startTime()',500);
}

function checkTime(i)
{
if (i<10)
  {
  i="0" + i;
  }
return i;
}
</script>
</head>

<body onload="startTime()">
<div id="txt"></div>
</body>
</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.