satriyoleksono

source kode

Nov 19th, 2019
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1. =========index.php=============
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <title>dataku</title>
  6. </head>
  7. <body>
  8.     <h1 align="center">MEMASUKAN DATA</h1>
  9. <div align="center">
  10.     <form action="simpan.php" method="GET">
  11.         <p>Masukan Nama</p>
  12.         <input type="text" name="nama"><br>
  13.         <p>Masukan Kelas</p>
  14.         <input type="text" name="kelas"><br>
  15.         <p>Masukan Jurusan</p>
  16.         <input type="text" name="jurusan"><br><br>
  17.         <input type="submit" value="SIMPAN">
  18.     </form>
  19. </div>
  20. </body>
  21. </html>
  22.  
  23. =====================simpan.php=========================
  24. <?php
  25. include 'koneksi.php';
  26. $nama=$_GET['nama'];
  27. $kelas=$_GET['kelas'];
  28. $jurusan=$_GET['jurusan'];
  29. $simpan=mysqli_query($koneksi,"INSERT INTO tbl_data VALUES('','$nama','$kelas','$jurusan')");
  30. header('location:index.php');
  31. ?>
  32.  
  33. ========================koneksi.php==================================
  34. <?php
  35. $koneksi=mysqli_connect('localhost','root','','data');
  36. ?>
Advertisement
Add Comment
Please, Sign In to add comment