Advertisement
hamjoricantiq

nisrina nada

Oct 1st, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>NisrinaNadaAgnela XIRPL1</title>
  4. </head>
  5. <body background="fuchsia">
  6. <font color="deepskyblue" face="Comic Sans MS">
  7. <center>
  8.     <form method="post">
  9.     <p>Masukkan jumlah ♡ yang ingin anda loop <input type="textarea" name="jumlah"><input type="submit"></p>
  10.     <?php
  11.        if(isset($_POST['jumlah'])){
  12.        $jumlah=$_POST['jumlah'];
  13.        for($a=0; $a<=$jumlah; $a++){
  14.            for($j=0;$j<=$a; $j++){
  15.                echo "♡";
  16.            }
  17.            echo "<br/>";
  18.         }
  19.         }
  20.     ?>
  21.     </form>
  22. </center>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement