Thursday, April 24, 2014

Introduction to PHP - 6/13 - codeacademy.com

Instructions: Go ahead and echo a string of your choice on line 8. Try out the concatenation operator if you're feeling bold!


<!DOCTYPE html>
<html>
<head>
</head>
<body>
        <p>
          <?php
          echo "Just  " . "another" . " string";
          ?>
        </p>
</body>
</html>

No comments:

Post a Comment