mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-23 18:21:56 +01:00
8 lines
176 B
PHP
8 lines
176 B
PHP
<?php
|
|
$alter = 77;
|
|
$gratulation = "Alles Gute zum Geburtstag!";
|
|
echo "Oma ist heute $alter Jahre alt geworden.";
|
|
echo "\n<br>";
|
|
echo "<b>$gratulation</b>";
|
|
?>
|