Hallo,
<?php
function test(){
$Vor = "Barnie ";
$Nach = "Gambel";
$Name = $vor.$Nach;
return $Name;
}
?>
... und die Ausgabe würde dann so erfolgen:
echo test();
Viel Grüße,
Horst
Hallo,
<?php
function test(){
$Vor = "Barnie ";
$Nach = "Gambel";
$Name = $vor.$Nach;
return $Name;
}
?>
... und die Ausgabe würde dann so erfolgen:
echo test();
Viel Grüße,
Horst