x
 
<!DOCTYPE html>
<html>
<body>
<?php  
$i = 0;
while ($i < 100) {
  $i+=10;
  echo "$i<br>";
}
?>  
</body>
</html>