badWhile.php

Source of badWhile.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="EN" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>
A bad While Loop
</title>
</head>

<body>

<h1>A bad while loop</h1>
<h3 style = "color: red">
NOTE:  This page has a deliberate error!
</h3>
<div>
<?php 

$i = 1;

while ($i <= 10){
  print "$i <br />\n";
  $j++;
} // end while	

?>
</div>

</body>
</html>