10 lines
No EOL
346 B
PHP
10 lines
No EOL
346 B
PHP
<?php
|
|
error_reporting(E_ALL); ini_set('display_errors',0);
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
//-----------------------------------------------------
|
|
$uhrzeit = date("H:i");
|
|
$datum = date("d.m.Y");
|
|
$template->assign('zeit', $uhrzeit);
|
|
$template->assign('date', $datum);
|
|
$template->assign('content', 'tpl/ajax/zeit.tpl');
|
|
?>
|