<?php
 introduction to php tutorial
 brief examples by greg lawler
 december 2000 brooks web 
class


$foo "Greg";

print 
"Hello $foo";

?>
$check_name = "ii";
if (!$check_name)
{
    print "Brooks rocks!";
    print "Brooks rocks!";
    print "Brooks rocks!";
    print "Brooks rocks!";
    print "Brooks rocks!";
}

else
{
    print "Bummer";
}

?>