<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Boom</title>
<!--
<script type="text/javascript" src="myjavascript.js"></script>
<link href="mystyle.css" rel="stylesheet" type="text/css">
-->
<style type="text/css"><!--
   /* internal styles */
   .boom { color: red ; } 
--></style>
</head>
<body>
 
<h1>Boom</h1>

<p>
<?php
   
// Boom in PHP
   // Author: Burt Rosenberg
   // Date: May 2007 

   
$i 10 ;
   while ( 
$i>) {
     
$i $i ;
     echo 
"$i<br>" ;
   }
   
// single quotes are stronger than double quotes, and
   // there will be no $ expansion.
   
echo '<div class="boom">Boom!</div>' ;
?>
</p>

</body>
</html>