Question : Need help with php

hello dear experts. I got stumped with my php home task. I have this code:

<?php
echo "<pre>";
for ($pro = 0; $pro < 15; $pro++) {
   for ($mLine = 0; $mLine <10; $mLine++) {
      if (($pro < 2 || $pro >= 13) || ($mLine < 2 || $mLine >= 8)) {
         echo "#";
      }    
      else echo " ";
   }
   echo "\n";
}
echo "</pre>";
?>


which prints the letter "O" but im trying to making the letter "T" similar to this code and i can't.. Please help to make the letter "T" using code similar to this

Answer : Need help with php

Hi,  This code will make "T"
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
<?php
echo "<pre>";
for ($pro = 0; $pro < 15; $pro++) {
   for ($mLine = 0; $mLine <10; $mLine++) {
      if (($pro < 2 ) || ($mLine > 3 && $mLine<6)) {
         echo "#";
      }    
      else echo " ";
   }
   echo "\n";
}
echo "</pre>";
?>
Random Solutions  
 
programming4us programming4us