HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<?php //Initialization: $i = 0 //test Expression: $i <= 5 //update Expression: $i++ for($i = 0; $i<=5; $i++){ echo $i; } ?>