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