Showing posts with label Do while. Show all posts
Showing posts with label Do while. Show all posts

Tuesday, February 4, 2014

Php program using loops

<html>
<body>

<?php
$i=1;
do
  {
  $i++;
  echo "The number is " . $i . "<br />";
  }
while ($i<=5);
?>

</body>
</html>