Thursday, April 24, 2014

Introduction to PHP - 8/13 - codeacademy.com

Instructions: On line 8, create a variable named$myName and set it equal to your name. Make sure to end your PHP code with a semicolon.



<!DOCTYPE html>
<html>
<head>
</head>
<body>
   <p>
     <?php
     $myName = "yournamehere";
     ?>
   </p>
    </body>
</html>

No comments:

Post a Comment