Thursday, April 24, 2014

Introduction to PHP - 7/13 - codeacademy.com

Instructions: On line 8 in between the <?php and ?>, use echo to calculate 17 * 123. Make sure to end your PHP code with a semicolon.


<!DOCTYPE html>
<html>
<head>
</head>
<body>
        <p>
          <?php
                echo 17*123;
          ?>
        </p>
</body>
</html>

No comments:

Post a Comment