<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php
$today = 'tuesday';
if ($today == 'tuesday') {
// this *is* a valid comment
echo '<p>Hello World from 1655 class on tuesday</p>';
} else {
echo '<p>it is thursday!</p>';
}
$f1 = 123.456;
$i1 = 121;
print ($f1 / 2);
print "<br/>";
print ($i1 / 2);
print "<br/>";
print (int)($i1 / 2);
print "<br/>";
print (float)( ($i1+1) / 2);
print "<hr>";
print 'one: \t$i1\n';
print "<br>\n";
print "two: \t$i1\n";
?>
</body>
</html>