7 lines
104 B
Text
7 lines
104 B
Text
for($i = 0; $i < 5; $i++) {
|
|
for($j = 0; $j <= $i; $j++) {
|
|
echo '*';
|
|
}
|
|
|
|
echo '\n';
|
|
}
|