<!DOCTYPE html>
<html>
<body>
<?php
$x=1;
while($x<=5) {
echo "数字是:$x <br>";
$x++;
}
?>
</body>
</html>