Thursday, April 24, 2014

Introduction to PHP - 11/13 - codeacademy.com

Instructions:  Declare a variable, $myName, and give it your name as a string.


<!DOCTYPE html>
<html>
    <head>
        <link type='text/css' rel='stylesheet' href='style.css'/>
<title>PHP FTW!</title>
</head>
<body>
 
        <p>
        <?php
        $myName = "Jowett";
        ?>
        </p>  
</body>
</html>

No comments:

Post a Comment