php while loop with array code example Example: while loop php <?php $a = 0; while($a<=5){ echo $a."<br>"; $a++; } ?>