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