What time is it?

The current date is 2024-12-22
The current time is 8:27:59 am
Hello World
CODE FOLLOWS


<div>
    <h3> What time is it?</h3>
<?php


        
// This code displays the current time

        // Get the current date in a readable format
        
$currentDate date('Y-m-d');
        
// Get the current time in a readable format
        
$currentTime date"g:i:s a" );

        
// Display greeting and time to the visitor
        
echo "The current date is $currentDate";
        echo 
"<br />";
        echo 
"The current time is $currentTime";

 
?>
</div>

<div>
<?php
    
//code
    
echo('Hello World');

    
// list code
    
echo('<hr>CODE FOLLOWS<br><br>');
    
highlight_file(__FILE__);
    echo(
'<hr>');
?>
</div>