Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- include 'koneksi.php';
- ?><!DOCTYPE html>
- <html>
- <head>
- <title>Tambah Data Arsip</title>
- <style type="text/css">
- h2, form{
- text-align: center;
- }
- </style>
- </head>
- <body>
- <h2> Tambah Data Arsip </h2>
- <form action="proses_simpan.php" method="POST">
- <label>Id Arsip :</label>
- <input type="text" name="id_arsip" placeholder="Otomatis (Auto Increment)" style="margin-left: 30px; margin-bottom: 10px;" readonly><br>
- <label>Id Kategori :</label>
- <input type="text" name="id_kategori" placeholder="Id Kategori" style="margin-left: 9px; margin-bottom: 10px;" /><br>
- <label>Tanggal :</label>
- <input type="date" name="tanggal" placeholder="Tanggal" style="margin-left: 31px; margin-bottom: 10px;" /><br>
- <label>Judul :</label>
- <input type="text" name="judul" placeholder="Judul" style="margin-left: 47px; margin-bottom: 10px;" /><br>
- <label>Berkas :</label>
- <input type="text" name="berkas" placeholder="Berkas" style="margin-left: 37px; margin-bottom: 10px;" /><br>
- <label>Deskripsi :</label>
- <input type="text" name="deskripsi" placeholder="Deskripsi" style="margin-left: 20px; margin-bottom: 10px;" /><br>
- <label>Keterangan :</label>
- <input type="text" name="keterangan" placeholder="Keterangan" style="margin-left: 9px; margin-bottom: 10px;" /><br>
- <button type="submit">Simpan</button>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment