<?
$title 
"Epoch Time Conversion";
require(
"top.php"); ?>
<form method="post" action="<?=$_SERVER["PHP_SELF"]?>">
<div class="Box">
Seconds since the Unix Epoch (Midnight, 1st Jan 1970):
<input type="text" name="value" size="10" maxlength="10" <? if (isset($_POST["value"])) { echo "value=" $_POST["value"]; } ?>><br>
<input type="submit" name="submit" value="Calculate"<br>
</div>
</form>
<div style="text-align: center; font-size: 8pt"><a href="time.phps">Source Code</a></div>
<br>
<?
if (isset($_POST["submit"]))
    {
    print 
'<div class="Box2">';
    echo 
$_POST["value"], " == "date("r"$_POST["value"]);
    print 
'</div>';
    }
?>

<? require("bottom.php"); ?>