2025-04-04 12:00:00am
2025-04-07 12:00:00am
2025-10-03 09:38:10pm

Code:

<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>

<div class="topbar">
<?php
include 'navbar.php';
?>

</div>

<?php

    $date
=strtotime("tomorrow");
    echo 
date("Y-m-d h:i:sa",$date);
    echo 
"<br>";
    
    
$date=strtotime("next Monday");
    echo 
date("Y-m-d h:i:sa",$date);
    echo 
"<br>";
    
    
$date=strtotime("+6 months");
    echo 
date("Y-m-d h:i:sa",$date);
    echo 
"<br>";
    


    
/* outputs in this format:
    
        2015-04-10 12:00:00am
        2015-04-13 12:00:00am
        2015-10-09 10:52:51am
    
    */
    
?>
    


<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file
("ex008.php");
?>
</div>


</body>

</html>