aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/08 Uebungen/03 PHP Grundlagen/PHP_Klasse1/Today.php

14 lines
150 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<html>
<head>
<title>Today is Date</title>
</head>
<p>Today's Date to this Web Server is
<?php
echo( date("l, d M Y.") );
?></p>
</body>
</html>