mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-21 14:43:42 +01:00
8 lines
96 B
PHP
8 lines
96 B
PHP
<?php
|
|
|
|
function sageHallo($name)
|
|
{
|
|
echo 'Hallo ' . $name;
|
|
}
|
|
|
|
sageHallo('PHP-Videotraining'); |