Thursday, September 25, 2014

Membuat Program Anak Panah


Hai kawaan, postingan kali ini akan lebih keren nih, yuk langsung aja.


Ini kodenya

<html>
 <head>
  <title>Membuat Program Anak Panah</title>
 </head>
 
 <body>
  <div align="center">
   <form method="POST">
    <table width="500px" style="border:2px solid gray; border-radius:5px;">
     <tr>
      <th colspan="2">Membuat Program Anak Panah<hr></th>
     </tr>
     <tr align="left">
      <th>Masukkan Input</th>
      <th align="right"><input type="text" name="input" placeholder="Masukkan Nilai"></th>
     <tr>
      <th colspan="2"><input type="submit" name="buat" value="Buat"></th>
     </tr>
     <tr><th colspan="2"><hr style="border:1px solid gray;"></th></tr>
     <tr>
      <th colspan="2" align="left">
       <?php
       $input = $_POST['input'];
  
       for ($i = 0; $i <= $input; $i++) {
        for ($j = $input; $j > $i; $j--) {
        echo "&nbsp&nbsp";
        }
         for($k = $input; $k > 0 ; $k--){
         echo "*";
         }
        echo "<br />";
       }
       
       for($x = 1; $x <= $input; $x++){
        for($y = 1; $y <= $x; $y++){
        echo "&nbsp&nbsp";
        }
         for($z = $input; $z > 0; $z--){
         echo "*";
         }
        echo "<br />";
       }
       ?>   
      </th>
     </tr>
    </table>
   </form>
  </div>
 </body>
</html>
Jadi deh, save di localhost kalian ya, terus buka di browser kalian. Tadaa keren kan


Penasaran dengan postingan selanjutnya ? Ikuti terus ya, jangan sampai ketinggalan. See yaa :)


0 comments:

Post a Comment