Advertisement
Thelz

StudiKasus2, Prak23

Oct 1st, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Davitra Eka S XI RPL 2</title>
  5. </head>
  6. <body>
  7.     <form method="post" action="Studikasus2.php">
  8.         <h1>Daftar Jurusan Siswa</h1><br>
  9.         <h3>SMKN 4 Bandung</h3>
  10.         <label>Masukan jumlah Data</label>
  11.         <input type="text" name="jumlah" id="jumlah">
  12.         <input type="submit" name="button" value="OK">
  13.  
  14.             <?php
  15.                 $jumlah = $_POST['jumlah'];
  16.                 $tabel = '
  17.                     <table>
  18.                         <tr>
  19.                             <td>
  20.                                 <label>Nama :</label>
  21.                             </td>
  22.                             <td><input type="text" name="nama"></td>
  23.                             <td>
  24.                                 <label>jurusan :</label>
  25.                                 <input type="radio" name="jurusan" value="RPL">RPL
  26.                                 <input type="radio" name="jurusan" value="TKJ">TKJ
  27.                                 <input type="radio" name="jurusan" value="MM">MM
  28.                                 <input type="radio" name="jurusan" value="AV">AV
  29.                                 <input type="radio" name="jurusan" value="TOI">TOI
  30.                                 <input type="radio" name="jurusan" value="TITL">TITL
  31.                             </td>
  32.                         </tr>
  33.                     </table>';
  34.  
  35.                 for ($i = 1; $i <= $jumlah; $i++){
  36.                     echo $tabel;       
  37.                 }
  38.             ?>
  39.             <input type="submit" name="button2" value="Submit">
  40.     </form>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement