Thursday, April 24, 2014

Introduction to PHP - 3/13 - codeacademy.com

Instructions:

Try it out. On line 8, use echo to output your name. Make sure to end your line with a semicolon.

    <!DOCTYPE html>
    <html>
    <head>
    </head>
    <body>
            <p>
              <?php
            echo "I'm [insert your name here]!";
              ?>
            </p>
    </body>
    </html>

No comments:

Post a Comment