Input
Output
<?php // Define number of rows $rows = 5; // Generate the triangle pattern for ($i = 1; $i <= $rows; $i++) { for ($j = 1; $j <= $i; $j++) { echo "* "; } echo "<br>"; } ?>