HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<?php $i = 0; while($i < 5) { echo "I Love PHP! <br>"; //then increment $i or else the loop will run non-stop and might end up crashing your PC. $i++; } ?>