26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
|
<?php
|
|||
|
|
|||
|
list($seconds, $microseconds) = explode(" ", microtime());
|
|||
|
$time_end = $seconds + $microseconds;
|
|||
|
$total_time = round($time_end-$time_start, 4);
|
|||
|
|
|||
|
print "<br /><br />";
|
|||
|
print "<table class='bottom' cellpadding=0 cellspacing=0>";
|
|||
|
print "<tr><td align='center'>Powered by <a href='http://phpfm.zalon.dk/' target='_new' class='bottom'>PHPFM</a> ".VERSION."</td></tr>";
|
|||
|
print "<tr><td align='center'>Copyright <20> 2002 Morten Bojsen-Hansen</td></tr>";
|
|||
|
print "<tr><td> </td></tr>";
|
|||
|
print "<tr><td align='center'>";
|
|||
|
print "<a href='http://validator.w3.org/check/referer'><img border='0' src='icon/valid-html401.jpg' alt='Valid HTML 4.01!' height='31' width='88'></a>";
|
|||
|
print "<a href='http://jigsaw.w3.org/css-validator/'><img style='border:0;width:88px;height:31px' src='icon/valid-css.jpg' alt='Valid CSS!'></a>";
|
|||
|
print "</td></tr>";
|
|||
|
print "<tr><td> </td></tr>";
|
|||
|
print "<tr><td align='center'>This page was produced in $total_time seconds.</td></tr>";
|
|||
|
print "</table>";
|
|||
|
|
|||
|
print "<br /><br />";
|
|||
|
|
|||
|
print "</center>";
|
|||
|
print "</body>";
|
|||
|
print "</html>";
|
|||
|
|
|||
|
?>
|