<?php
require("class.realhour.php");
$h = new realhour();
?><!DOCTYPE html>
<html>
<head>
<meta name="author" content="Pierre FAUQUE, pierre@fauque.net">
<title>Test: class.realhour.php</title>
<style type="text/css">
body { margin-left:2em; margin-top:2em; }
h1 { font-family:times; font-size:20pt; font-style:italic; color:#000080; }
</style>
</head>
<body>
<h1>Demonstartion of the realhour Class</h1>
<?php
echo "At this very moment we are on :<br/> <br/>\n";
echo "— ".$h->now("m/d/Y H:i:s")." (Standard English writing)<br/>\n";
echo "— ".$h->now("m/d/Y \a\\t H:i:s")." (English writing)<br/> <br/>\n";
echo "— ".$h->now()." (Standard French writing)<br/>\n";
echo "— ".$h->now("d/m/Y ? H:i:s")." (French writing)<br/>\n";
?>
</body>
</html>
|