Alex Slovinski's Time Example

christmas
There are 236 days to Xmas
 

CODE FOLLOWS

<?php
    
include('includes/header.php');

    
// set timezone
    
date_default_timezone_set("America/Detroit");

    
error_reporting(E_ALL);    // set error reporting to all

    // clean input from user

    
$daysuntilxmas ceil((mktime(0,0,0,12,25,date('Y')) - time()) / 86400);

?>

    <h1> Alex Slovinski's Time Example</h1>

    <img src="images/christmastree.png" alt="christmas" width="500" height="350"><br>

    <?php  echo "There are $daysuntilxmas days to Xmas" ?>

<?php

    
include('includes/footer.php');
?>