Thursday, April 24, 2014

Introduction to PHP - 5/13 - codeacademy.com

Topic: PHP Syntax


Instuction: On line 8 in between the <?php and ?>, use echo to output "I'm learning PHP". Make sure to end your PHP code with a semicolon.


<!DOCTYPE html>
<html>
    <head>
</head>
<body>
        <h1>
          <?php
              echo "I'm learning PHP";
          ?>
        </h1>
</body>
</html>

No comments:

Post a Comment