<html>
<head>
<title> loops1.php </title>
</head>
<body>
<h1>
<?php
$value = 0;
while ($value < 100)
{
print $value . " ";
$value += 27;
}
print "<br>\n";
for ($i = 0; $i < 6; $i++)
{
print $i . " ";
}
?>
</h1>
</body>
</html>