<html>
<head>
        <title>This my first PHP page</title>
</head>
<body>

<h1>PHP output</h1>

<?php
        print " This line and the next few are generated by PHP <br /> \n";   
        print " <h2> Single vs Double quotes </h2> \n";   

        $name = 'Sam Sultan';
        print " The variable is  $name   \n <br> ";		//in double quotes
        print ' The variable is  $name   \n <br> ';		//in single quotes
        print " The variable is '$name'  \n <br> ";		//in double quote, then single quote in string   		
        print ' The variable is "$name"  \n <br> ';	    //in single quote, then double quote in string   
        
?>

<br/>
<p><b>...that's all Folks.  </b></p>

<?php include "zCode/include.php"; ?>              <!-- hyperlink to see the code -->
</body>
</html>