Wednesday, January 21, 2015

PHP with HTML

<html> 
    <title>HTML with PHP</title> 
<body> 
      <h1>My Example</h1> 
            <?php //your php code here ?> 
            <b>Here is some more HTML</b> 
            <?php //more php code ?> 
 </body> 
</html>
_________________________________________________________________
<?php  Echo "<html>"; 
Echo "<title>HTML with PHP</title>"; 
Echo "<b>My Example</b>"; 
 //your php code here 
 Print "<i>Print works too!</i>";  ?>