Как отобразить звезды, как показано ниже ?
I want to display the stars in this way > * * * * * But when i tried with the below code i'm getting it as right angle triangle, please can any one help to get the desired answer.
Что я уже пробовал:
for ($i=1; $i<=4; $i++) { for ($j=1; $j<=$i; $j++) { echo '* '; } echo "</br>"; }