mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 15:13:42 +01:00
7 lines
106 B
PHP
7 lines
106 B
PHP
<?php
|
|
|
|
$vorname = 'Max';
|
|
$nachname = 'Muster';
|
|
|
|
$name = $vorname . ' ' . $nachname;
|
|
echo 'Hallo ' . $name; |