initial commit of file from CVS for smeserver-webshare on Sat Sep 7 21:15:27 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 21:15:27 +10:00
parent 609e015cb7
commit e4661a6aa1
90 changed files with 5344 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
<?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>&nbsp;</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>";
?>