PHP Classes

File: test_servertime.php

Recommend this page to a friend!
  Classes of Peter Klauer   servertime   test_servertime.php   Download  
File: test_servertime.php
Role: Example script
Content type: text/plain
Description: An example
Class: servertime
Digital text clock showing the server time
Author: By
Last change:
Date: 20 years ago
Size: 429 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test Servertime Klasse</title>
<?php

include 'inc_servertime.php';
$st = new servertime;
#$st->lang = 'eng';
$st->shortmonth = true;

$st->InstallClockHead();

?>
</head>
<body>
<?
$st
->InstallClock();

echo
'<br><br>';

$st->Help(); // <-- you need not call this one ;-)

$st->InstallClockBody();
?>
</body>
</html>