Write code that will print the following: * ** *** **** *****
for($i=0;$i<5;$i++) { for($j=0; $j<=$i ; $j++) { echo "*"; } echo '<br>'; }