mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
5 lines
106 B
PHP
5 lines
106 B
PHP
|
<?php
|
||
|
$a = "Alles Gute zum Geburtstag";
|
||
|
echo $a + ", liebe Oma!"; # wird nicht funktionieren
|
||
|
?>
|