Skip to content

Instantly share code, notes, and snippets.

@JBlond
Created February 19, 2015 15:00
Show Gist options
  • Save JBlond/45a49b839e824cee019d to your computer and use it in GitHub Desktop.
Save JBlond/45a49b839e824cee019d to your computer and use it in GitHub Desktop.
countdown.php
<?php
$now = time();
$then = strtotime("2014-11-21 18:15:00");
$diffTime = ($then-$now);
$day = floor($diffTime / (24*3600));
$diffTime = $diffTime % (24*3600);
$houre = floor($diffTime / (60*60));
$diffTime = $diffTime % (60*60);
$min = floor($diffTime / 60);
echo '<h2>Noch '. $day .' Tage und ' . $houre . ' Stunden und '. round($min,0) .' Minuten</h2>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment