<!DOCTYPE html>
<html>
<body>
<?php
$x = 0;
while($x <= 100) {
echo "Число: $x <br>";
$x+=10;
}
?>
</body>
</html>