aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/03 PHP Grundlagen/kapitel03/operator2.php
Harald G. Mueller a63a769c98 muh
2022-02-23 22:44:33 +01:00

5 lines
106 B
PHP

<?php
$a = "Alles Gute zum Geburtstag";
echo $a + ", liebe Oma!"; # wird nicht funktionieren
?>