hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/video.obu.edu/panic/modules/ |
<?php
/* DEFAULTS */
date_default_timezone_set('America/Chicago');
$stop = time();
/* DATA */
// http://php.net/manual/en/function.mktime.php
if (!empty($_GET['stop']))
$stop = $_GET['stop'];
if (!empty($_GET['timezone']))
date_default_timezone_set($_GET['timezone']);
/* DISPLAY */
$diff = $stop - time();
$days = floor($diff/(60*60*24));
if ($days <= 0) {
$result = 'COUNTDOWN FINISHED!';
} else {
$result = "$days DAYS <span class='event'>{$_GET['event']}</span>";
}
?>
<div class='mega'>
<?php
if ($days <= 0) {
echo ' <div class="star">
<span class="top"></span>
<span class="center"></span>
<span class="bottom"></span>
<span class="text">!</span>
</div>';
}
?>
<?php echo $result; ?>
</div>