رسم شكل شجرة بلغة Draw Tree using PHP


رسم شكل شجرة بلغة  Draw Tree using PHP 




Index.php

<!DOCTYPE html>

<html>

<head>

 <title>Tree in PHP</title>

 <link rel="stylesheet" type="text/css" href="style.css">

</head>

<body>

 <div class="all">

 <p class="ha1">Draw Tree using PHP</p>



 <?php

   

    echo "<div class ='frist'>";

     for($i = 0; $i<5; $i++)

     {

      echo "<br>";

      for($j = 0; $j <5; $j++)          

            if($i<$j)

               echo " ";



         for($k = 0; $k <5; $k++)

            if($i>=$k)

               echo "*  ";



         for($x = 0; $x <5; $x++)

            if($i>$x)

               echo "*  ";

     }

  echo "</div>";

  echo "<div class='second'>";   

     for($i = 0; $i<6; $i++)

     {

      echo "<br>";

      for($j = 0; $j <6; $j++)

            if($i<$j)

               echo " ";



         for($k = 1; $k <6; $k++)

            if($i>=$k)

               echo "*  ";



         for($x = 0; $x <6; $x++)

            if($i>$x)

               echo "*  ";

     }

       echo "</div>";



       echo "<div class='thired'>";

     for($i = 0; $i<8; $i++)

     {

      echo "<br>";

      for($j = 0; $j <8; $j++)

            if($i<$j)

               echo " ";



         for($k = 1; $k <8; $k++)

            if($i>=$k)

               echo "*  ";



         for($x = 0; $x <8; $x++)

            if($i>$x)

               echo "*  ";

     }

   echo "</div>";





   echo "<div class='down'>";

   for($k = 0; $k <6 ; $k++)

   {

    for($i = 0; $i<4; $i++)

    {

       echo "*  ";

    } 

    echo "<br>";

   }   

    echo "</div>";



 ?>



</div>

</body>

</html>




Style.css


.all

{

 background-color: #441a1a;

 color:white;

 font-size: 15px;

}



.ha1

{

 text-align: center;

    font: initial;

    font-size: 38px;

}

.frist

{

 text-align: center;

 margin-top: 5px;

}

.second

{

  text-align: center;

      margin-top: -35px;

}

.thired

{

  text-align: center;

      margin-top: -35px;

}



.down

{

 text-align: center;

}


   


تحميل الكود : Index.php

 http://Srtwin.com/dZw90r


http://Srtwin.com/xxns962f  Style .css


No comments:

Powered by Blogger.