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