dithph

tambah.php

May 15th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <?php
  2. include 'koneksi.php';
  3. ?><!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>Tambah Data Arsip</title>
  7.  
  8. <style type="text/css">
  9. h2, form{
  10. text-align: center;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h2> Tambah Data Arsip </h2>
  16.  
  17. <form action="proses_simpan.php" method="POST">
  18.  
  19. <label>Id Arsip :</label>
  20. <input type="text" name="id_arsip" placeholder="Otomatis (Auto Increment)" style="margin-left: 30px; margin-bottom: 10px;" readonly><br>
  21.  
  22. <label>Id Kategori :</label>
  23. <input type="text" name="id_kategori" placeholder="Id Kategori" style="margin-left: 9px; margin-bottom: 10px;" /><br>
  24.  
  25. <label>Tanggal :</label>
  26. <input type="date" name="tanggal" placeholder="Tanggal" style="margin-left: 31px; margin-bottom: 10px;" /><br>
  27.  
  28. <label>Judul :</label>
  29. <input type="text" name="judul" placeholder="Judul" style="margin-left: 47px; margin-bottom: 10px;" /><br>
  30.  
  31. <label>Berkas :</label>
  32. <input type="text" name="berkas" placeholder="Berkas" style="margin-left: 37px; margin-bottom: 10px;" /><br>
  33.  
  34. <label>Deskripsi :</label>
  35. <input type="text" name="deskripsi" placeholder="Deskripsi" style="margin-left: 20px; margin-bottom: 10px;" /><br>
  36.  
  37. <label>Keterangan :</label>
  38. <input type="text" name="keterangan" placeholder="Keterangan" style="margin-left: 9px; margin-bottom: 10px;" /><br>
  39.  
  40. <button type="submit">Simpan</button>
  41. </form>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment