mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 07:03:41 +01:00
9 lines
161 B
PHP
9 lines
161 B
PHP
|
<?php
|
||
|
|
||
|
function sageHallo($vorname, $nachname)
|
||
|
{
|
||
|
echo 'Hallo ' . $vorname . ' ' . $nachname;
|
||
|
}
|
||
|
|
||
|
sageHallo('Barbara', 'Beispiel');
|
||
|
sageHallo('Max', 'Muster');
|