Details | Letzte Änderung | Log anzeigen | RSS feed
<?php
$string = 'hello';
echo $string;
echo 'hello';
echo('hello');
echo($hello);
echo ('hello');
echo ($hello);
?>