Showing posts with label While loop. Show all posts
Showing posts with label While loop. Show all posts

Monday, February 3, 2014

Php program using loops

<html>
<body>

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

</body>
</html>