<?php
$a = 1234;
$b = 0777;
$c = 0xff;
$d = 1.25;
echo "$a $b $c $d<br />\n";
?>
<?php
$name = 'Rasmus $last'; // Single-quoted
$str = "Hi $name\n"; // Double-quoted
echo $str;
?>
<?php
$greeting = true;
if($greeting) {
echo "Hi Carl";
$greeting = false;
}
?>
<?php
echo 5 + "1.5" + "10e2";
?>