Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php  
$x = 0;
 
while($x <= 100) {
  echo "The number is: $x <br>";
  $x+=10;
}
?>  
</body>
<!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_loop_while2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:22:24 GMT -->
</html>
The number is: 0
The number is: 10
The number is: 20
The number is: 30
The number is: 40
The number is: 50
The number is: 60
The number is: 70
The number is: 80
The number is: 90
The number is: 100