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


$foo "Greg";

print 
"Hello $foo";

?>

if ($foo) 
{
    print "Hello $foo";
}

else
{
    print "<form method=post action=http://info/php/05.php>";
    print "<br>";
    print "What is your Name?";
    print "<input type=text name=foo size=20>";
    print "<input type=submit value=Push>";
    print "</form>";
}
?>