<html>
<body>
<?
$a="1";
$b="2";
$c=$a+$b;
echo $c;

$e="Herbert ";
$f="König";

$d=$e.$f;
echo "<br> 1.) $d";
echo "<br> 2.) Hallo Herr $e $f";
echo '<br> 3.) Hallo Herr $e $f';
echo "<br> 4.) Hallo Herr '$e $f' ";
echo "<br> 5.) Hallo Herr \"$e $f\" ";
echo '<br> 6.) Hallo Herr \'$e $f\' ';
echo "<br> 7.) Hallo Herr \$e \$f";
?>
</body>
</html>