mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
7 lines
149 B
PHP
7 lines
149 B
PHP
|
<?php
|
||
|
$timestamp = time();
|
||
|
$datum = date("d.m.Y",$timestamp);
|
||
|
$uhrzeit = date("H:i:s",$timestamp);
|
||
|
echo $datum," - ",$uhrzeit," Uhr";
|
||
|
?>
|