<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   <br> \n";		//in double quote
        print " The variable is '$name'  <br> \n";		//in double quote, single quote in string   		
        print ' The variable is  $name   \n <br>';		//in single quote   
        print ' The variable is "$name"  \n';			//in single quote, double quote in string   
        
?>

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




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