php7-mysql-data/Kapitel_3/Lektion_2/3_mehrere_parameter.php

9 lines
161 B
PHP
Raw Normal View History

2016-08-16 21:20:53 +02:00
<?php
function sageHallo($vorname, $nachname)
{
echo 'Hallo ' . $vorname . ' ' . $nachname;
}
sageHallo('Barbara', 'Beispiel');
sageHallo('Max', 'Muster');