Please send questions to st10@humboldt.edu .

<html>

<head>
    <title> Hello, World for PHP </title>
</head>

<body>

    <?php
        // this is a PHP comment (one of several styles)

        // print outputs stuff to the resulting page
        // (separate PHP statements with semicolons...)

        print "Hello, World ";
        print " for PHP"

    ?>

</body>

</html>