Home / PHP/MySQL Tutorials / Language Basics / Archive by category 'While statement'

While statement

Using the while Loop in PHP

<?php
$a=2;
echo("<p>Even Numbers from 2 to 30<p>");
while ($a <=30)
{
   echo("$a <br>");
   $a=$a+2;
}
?>