Countdown

So funktioniert es bei mir...

PHP:
<?php
$tag = date("d");

if(date("H") == "09" AND date("i") > "00"){
$tag++;
}elseif(date("H") > "09"){
$tag++;
}

$monat = date("F");
$jahr = date("Y");
?>
<script type='text/javascript'>
// Erstellt mit dem Countdown-Generator - Homepage-Total.de
<?php echo "var end = new Date('$monat $tag, $jahr 09:00:00');"; ?>
function toSt2(n) {
  s = '';
  if (n < 10) s += '0';
  return (s + n).toString();
}
function toSt3(n) {
  s = '';
  if (n < 10) s += '00';
  else if (n < 100) s += '0';
  return (s + n).toString();
}
function countdown() {
  d = new Date();
  count = Math.floor(end.getTime() - d.getTime());
  if(count > 0) {
    miliseconds = toSt3(count%1000); count = Math.floor(count/1000);
    seconds = toSt2(count%60); count = Math.floor(count/60);
    minutes = toSt2(count%60); count = Math.floor(count/60);
    hours = toSt2(count%24); count = Math.floor(count/24);
    document.getElementById('c2').innerHTML = hours + ':' + minutes + ':' + seconds
    setTimeout('countdown()', 50);
  }
}
</script>

<body onload='countdown();'>

<div align=center>
 <SPAN id=c2 style="FONT: bold 25px arial; COLOR: blue;">;</SPAN><br>
</div>
 
Zurück