<!DOCTYPE html> 
<html> 
<body> 
<h1>PHP page</h1>
<?php 
// This is a single-line comment
# This is also a single-line comment 
?>
</body> 
</html>
                               
   
                              
                                
                               <!DOCTYPE html> 
<html> 
<body> 
<h1>PHP page</h1>
<?php 
/* 
This is a block comment 
This is a block comment 
This is a block comment 
*/ 
?>
</body> 
</html>