Wednesday 27th of August 2025 01:42:49 AM
2025-08-27 01:42:49
© 2013-2025
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
echo date('l jS \of F Y h:i:s A')."<br><br>";
echo date('Y-m-d H:i:s')."<br><br>";
/* outputs in this format:
Thursday 9th of April 2015 10:30:19 AM
2015-04-09 10:30:19
*/
?>
© 2013-<?php echo date("Y");
?>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex006.php");
?>
</div>
</body>
</html>