<html>

<head><title>while loop</title></head>

<body>

<?php

   $num = 1;
   echo("<table border=1>");
 	  
   while ($num <= 10){ 
 	  
      echo ("<tr><td>This is cell: " . $num++ . "</td></tr>");
   
  } 
 	  
  echo("</table>");

?>

</body>
</html>