OneCompiler

PHP Program to print *

204
<?php for ($i = 0; $i < 5; $i++) { for ($j = 0; $j <= $i; $j++) { echo "*"; } echo "\n"; } ?>