aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/08 Uebungen/03 PHP Grundlagen/kapitel03/operator3.php

5 lines
100 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
$a = "Alles Gute zum Geburtstag";
echo $a . ", liebe Oma!"; # wird funktionieren
?>