Hello, world! The current date and time is Dec-22-2024 10:39:49 am
 

CODE FOLLOWS

<!--
title: hello_with_time
author: veronica hutchins
date: 9/2/2024
purpose: php assignment
-->
<?php
    
//header
    
include("includes/header.php");

    
//code
    //https://www.w3schools.com/php/php_date.asp timezone info accessed 9/2/2024
    
date_default_timezone_set("America/Detroit");
    
$currentTime date"M-j-Y g:i:s a" );
    echo 
"Hello, world! The current date and time is $currentTime";

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