Nomor 2
Jawaban No. 2 :
- Edit file "index.php" menjadi :
<?php
error_reporting(~E_NOTICE); #ini digunakan utk menyembunyikan error khusus notice khususnya di index / beranda
$koneksi = new mysqli("localhost", "root", "", "db_kk0918");
if ($koneksi->connect_error)
{
echo "Gagal terhubung karena " . $koneksi->connect_error;
}
?>
<style>
.button {
height: 25px;
width: 100px;
margin:5px;
color:#FFFFFF;
text-align:center;
background: #A9A9A9;
border:solid 2px #00FF00;
display: table;
transition: .3s ease-in;
}
.button:hover {
background-color: black;
}
</style>
<table border="1" width="80%" align="center">
<tr align="center">
<td colspan="2"><img src="images/header.png" height="64px" width="100%"></td>
</tr>
<tr>
<td width="10%">
<h3>Menu</h3>
<a href="index.php" class="button">Beranda</a>
<a href="index.php?hal=tentang.php" class="button">Tentang</a>
<a href="index.php?hal=entry.php" class="button">Entry(C)</a>
<a href="index.php?hal=tampil.php" class="button">Tampil(R)</a>
<a href="index.php?hal=ubah.php" class="button">Ubah(U)</a>
<a href="index.php?hal=hapus.php" class="button">Hapus(D)</a>
</td>
<td align="justify">
<?php
$hal = $_GET["hal"]; #echo $_GET["hal"]; utk nampilin isi yang dari kita get/post dari index.php?hal=xxx.php
if (isset($hal) && $hal!="")
{ #kondisi ini akan dijalankan jika variabel $hal digunakan dan variabel $hal isinya bukan kosong
include($hal);
}
else
{
echo "<h1>Selamat Datang</h1><p>Saya datang dari Habang, jauh menuntut ilmu, biarlah yang penting saya bisa. Saya yakin pasti bisa <strong>#nekbisanekkawa</strong></p>";
}
?>
</td>
</tr>
<tr align="center">
<td colspan="2" background="images/akbar.png">footer</td>
</tr>
</table>
- Untuk membuat tombol "Simpan" menjadi bingkai merah, tulisan putih, background hitam, pada file "entry.php" edit menjadi :
<style>
.button1 {
height: 25px;
width: 100px;
margin:5px;
color:#FFFFFF;
text-align:center;
background: black;
border:solid 2px red;
display: table;
transition: .3s ease-in;
}
</style>
<form method="POST">
<h1>Entry Data Barang</h1>
<table>
<tr>
<td>Kode Barang :</td>
<td><input type="text" name="txtKd"></td>
</tr>
<tr>
<td>Nama Barang :</td>
<td><input type="text" name="txtNm"></td>
</tr>
<tr>
<td>Harga :</td>
<td><input type="text" name="txtHr" onkeyup="this.value=this.value.replace(/[^\d]/,'')"></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Simpan" name="btnSimpan" class="button1">
</td>
</tr>
</table>
</form>
<?php
if (isset($_POST["btnSimpan"]))
{
#tampung ke variabel yang isian dari form
$kode = $_POST["txtKd"];
$nama = $_POST["txtNm"];
$harga = $_POST["txtHr"];
#coba cek ada gak isinya
echo $kode . $nama . $harga;
$query = $koneksi->query("INSERT INTO `db_kk0918`.`barang` (`KdBrg`, `NmBrg`, `Harga`) VALUES ('$kode', '$nama', '$harga')");
} #akhir tombol simpan diklik
?>