Mungkin banyak yang bilang kalau program php itu susah dan ada yang bilang juga gampang. Kalau menurut saya sih ya gampang-gampang susah, hehe. Nah kali ini saya akan ngasih tips bagaimana Cara Membuat Aplikasi Simpan Tambah Edit Hapus Dan Cari Dengan PHP MYSQL, karena kemarin pas uas saya di suruh membuat aplikasi seperti ini sama dosen. Yah siapa tau ini bisa bermanfaat bagi sobat yang belum tau tentang PHP.
Pertama yang sobat harus lakukan membuat data base dan tabel di PhpmyAdmin dulu ya, seperti ini :
Buat Databasenya dengan "dbuas" dan tabelnya "tabbarang" (tanpa tanda petik dua). Atur Field, Type dan length seperti gambar diatas.
Setelah itu sebaiknya sobat buka dulu My Komputer pilih Local Disk C-->Xampp-->htdocs lalu buat folder baru, beri nama UAS2, sobat boleh yang lain nama foldernya, sesukanya sobat saja.
Buka Macromedia Dreamweaver8 pilih File-->New--> Dynamic Page-->PHP--> Create.
1. Isikan source di bawah ini :
2. Buka File-->New isikan source di bawah ini:Pertama yang sobat harus lakukan membuat data base dan tabel di PhpmyAdmin dulu ya, seperti ini :
Setelah itu sebaiknya sobat buka dulu My Komputer pilih Local Disk C-->Xampp-->htdocs lalu buat folder baru, beri nama UAS2, sobat boleh yang lain nama foldernya, sesukanya sobat saja.
Buka Macromedia Dreamweaver8 pilih File-->New--> Dynamic Page-->PHP--> Create.
1. Isikan source di bawah ini :
ekoninjarr.blogspot.com
<html>
<head>
<title>Daftar Barang</title>
</head>
<body>
<p>
<?php
mysql_connect("localhost", "root", "") or die ("Gagal konek ke server.");
mysql_select_db("dbuas") or die ("Gagal membuka database.");
?>
</p>
<p align="center">MENU</p>
<table width="536" height="96" border="5" align="center">
<tr>
<th width="43" height="36">Kode</th>
<th width="102">Nama Produk </th>
<th width="50">Jenis</th>
<th width="82">Harga</th>
<th width="82">Rubah</th>
<th width="82">Hapus</th>
</tr>
<?php
$query = "select * from tabbarang";
$result = mysql_query($query);
while ($buff = mysql_fetch_array($result)){
?>
<tr>
<td><?php echo $buff['kode']; ?></td>
<td><?php echo $buff['namaproduk']; ?></td>
<td><?php echo $buff['jenis']; ?></td>
<td><?php echo $buff['harga']; ?></td>
<td width="43"><a href="edit.php?jenis=<?php echo $buff['jenis']; ?>">Rubah</a></td>
<td width="43"><a href="hapus.php?jenis=<?php echo $buff['jenis']; ?>">Hapus</a></td>
</tr>
<?php
}
mysql_close();
?>
</table>
<p> </p>
<td><p align="center"><a href="tambah.php"> ADD</a> </p></td>
<p><td><p align="center"><a href="cari.php"> SEARCH</a> </p></td>
</body>
</html>
lalu simpan beri nama menuutama.php<html>
<head>
<title>Daftar Barang</title>
</head>
<body>
<p>
<?php
mysql_connect("localhost", "root", "") or die ("Gagal konek ke server.");
mysql_select_db("dbuas") or die ("Gagal membuka database.");
?>
</p>
<p align="center">MENU</p>
<table width="536" height="96" border="5" align="center">
<tr>
<th width="43" height="36">Kode</th>
<th width="102">Nama Produk </th>
<th width="50">Jenis</th>
<th width="82">Harga</th>
<th width="82">Rubah</th>
<th width="82">Hapus</th>
</tr>
<?php
$query = "select * from tabbarang";
$result = mysql_query($query);
while ($buff = mysql_fetch_array($result)){
?>
<tr>
<td><?php echo $buff['kode']; ?></td>
<td><?php echo $buff['namaproduk']; ?></td>
<td><?php echo $buff['jenis']; ?></td>
<td><?php echo $buff['harga']; ?></td>
<td width="43"><a href="edit.php?jenis=<?php echo $buff['jenis']; ?>">Rubah</a></td>
<td width="43"><a href="hapus.php?jenis=<?php echo $buff['jenis']; ?>">Hapus</a></td>
</tr>
<?php
}
mysql_close();
?>
</table>
<p> </p>
<td><p align="center"><a href="tambah.php"> ADD</a> </p></td>
<p><td><p align="center"><a href="cari.php"> SEARCH</a> </p></td>
</body>
</html>
ekoninjarr.blogspot.com
<?php
$host="localhost";
$user="root";
$pass="";
$database="dbuas";
mysql_connect($host,$user,$pass) or die ("server error");
mysql_select_db($database) or die ("database gagal dibuka");
?>
lalu simpan beri nama koneksi.php<?php
$host="localhost";
$user="root";
$pass="";
$database="dbuas";
mysql_connect($host,$user,$pass) or die ("server error");
mysql_select_db($database) or die ("database gagal dibuka");
?>
3. Buka lagi File-->New isikan source dibawah ini :
ekoninjarr.blogspot.com
<head><title>Tambah Data</title></head>
<body>
<h3><p align="left">Tambah Barang</p></h3>
<form name="form1" method="post" action="entry.php">
<table>
<tr>
<td>Kode</td>
<td><input type="text" name="kode" size="12"></td>
</tr>
<tr>
<td>Nama Produk </td>
<td><input type="text" name="namaproduk" size="30"></td>
</tr>
<tr>
<td>Jenis</td>
<td><input type="text" name="jenis" size="30"></td>
</tr>
<tr>
<td>Harga</td>
<td><input type="text" name="harga" size="30"></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
</tr>
<tr>
<td><input value="Simpan" name="submit" type="submit" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
lalu simpan beri nama tambah.php<head><title>Tambah Data</title></head>
<body>
<h3><p align="left">Tambah Barang</p></h3>
<form name="form1" method="post" action="entry.php">
<table>
<tr>
<td>Kode</td>
<td><input type="text" name="kode" size="12"></td>
</tr>
<tr>
<td>Nama Produk </td>
<td><input type="text" name="namaproduk" size="30"></td>
</tr>
<tr>
<td>Jenis</td>
<td><input type="text" name="jenis" size="30"></td>
</tr>
<tr>
<td>Harga</td>
<td><input type="text" name="harga" size="30"></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
</tr>
<tr>
<td><input value="Simpan" name="submit" type="submit" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
4. Buat File New lagi Source dibawah ini :
ekoninjarr.blogspot.com
<?php
include("koneksi.php");
$kode = $_POST['kode'];
$namaproduk = $_POST['namaproduk'];
$jenis = $_POST['jenis'];
$harga = $_POST['harga'];
$query = mysql_query("insert into tabbarang values ('$kode','$namaproduk','$jenis','$harga')");
echo "Data Telah disimpan<br>
<a href=\"menuutama.php\">Kembali</a>";
?>
lalu simpan beri nama entry.php<?php
include("koneksi.php");
$kode = $_POST['kode'];
$namaproduk = $_POST['namaproduk'];
$jenis = $_POST['jenis'];
$harga = $_POST['harga'];
$query = mysql_query("insert into tabbarang values ('$kode','$namaproduk','$jenis','$harga')");
echo "Data Telah disimpan<br>
<a href=\"menuutama.php\">Kembali</a>";
?>
5. File baru lagi source di bawah ini:
ekoninjarr.blogspot.com
<?php
include("koneksi.php");
$jenis = $_GET['jenis'];
$query = "select * from tabbarang where jenis='$jenis'";
$result = mysql_query($query) or die("gagal melakukan query");
$buff = mysql_fetch_array($result);
mysql_close();
?>
<html>
<head><title>Edit Data</title></head>
<body>
<form name="form1" method="post" action="update.php">
<table>
<tr>
<td>Kode</td>
<td><input type="text" name="kode" value="<?php echo $buff['kode']; ?>"></td></tr>
<tr><td>Nama Produk </td>
<td><input type="text" name="namaproduk" value="<?php echo $buff['namaproduk']; ?>"></td></tr>
<tr>
<td>Jenis</td>
<td><input type="text" name="jenis" value="<?php echo $buff['jenis']; ?>" ></td></tr>
<tr>
<td>Harga</td>
<td><input type="text" name="harga" value="<?php echo $buff['harga']; ?>" ></td></tr>
<tr><td> </td>
</tr>
<tr>
</table>
<label>
<input type="submit" name="Submit" value="Simpan">
</label>
<p> </p>
</form>
</body>
</html>
lalu simpan beri nama edit.php<?php
include("koneksi.php");
$jenis = $_GET['jenis'];
$query = "select * from tabbarang where jenis='$jenis'";
$result = mysql_query($query) or die("gagal melakukan query");
$buff = mysql_fetch_array($result);
mysql_close();
?>
<html>
<head><title>Edit Data</title></head>
<body>
<form name="form1" method="post" action="update.php">
<table>
<tr>
<td>Kode</td>
<td><input type="text" name="kode" value="<?php echo $buff['kode']; ?>"></td></tr>
<tr><td>Nama Produk </td>
<td><input type="text" name="namaproduk" value="<?php echo $buff['namaproduk']; ?>"></td></tr>
<tr>
<td>Jenis</td>
<td><input type="text" name="jenis" value="<?php echo $buff['jenis']; ?>" ></td></tr>
<tr>
<td>Harga</td>
<td><input type="text" name="harga" value="<?php echo $buff['harga']; ?>" ></td></tr>
<tr><td> </td>
</tr>
<tr>
</table>
<label>
<input type="submit" name="Submit" value="Simpan">
</label>
<p> </p>
</form>
</body>
</html>
6. File baru lagi source nya dibawah ini :
ekoninjarr.blogspot.com
<?php
include("koneksi.php");
$kode = $_POST['kode'];
$namaproduk = $_POST['namaproduk'];
$jenis = $_POST['jenis'];
$harga = $_POST['harga'];
mysql_query("update tabbarang set kode='$kode', namaproduk='$namaproduk', harga='$harga' where jenis='$jenis'");
echo "Data Telah diupdate<br>
<a href=\"menuutama.php\">Kembali</a>";
?>
lalu simpan beri nama update.php<?php
include("koneksi.php");
$kode = $_POST['kode'];
$namaproduk = $_POST['namaproduk'];
$jenis = $_POST['jenis'];
$harga = $_POST['harga'];
mysql_query("update tabbarang set kode='$kode', namaproduk='$namaproduk', harga='$harga' where jenis='$jenis'");
echo "Data Telah diupdate<br>
<a href=\"menuutama.php\">Kembali</a>";
?>
7. File baru lagi source di bawah ini:
ekoninjarr.blogspot.com
<style type="text/css">
<!--
body {
background-color: #FFFFFF;
}
-->
</style><?php
include("koneksi.php");
mysql_query("DELETE from tabbarang WHERE jenis='$_GET[jenis]'");
echo"Data Telah dihapus<br>
<a href=\"menuutama.php\">Kembali</a>";
?>
lalu simpan beri nama hapus.php<style type="text/css">
<!--
body {
background-color: #FFFFFF;
}
-->
</style><?php
include("koneksi.php");
mysql_query("DELETE from tabbarang WHERE jenis='$_GET[jenis]'");
echo"Data Telah dihapus<br>
<a href=\"menuutama.php\">Kembali</a>";
?>
8. File baru lagi source dibawah ini :
ekoninjarr.blogspot.com
<html>
<head>
<title></title>
</head>
<body>
<h1>Search</h1>
<form action="hasilcari.php" method="POST">
<p>
Jenis
<input name="search" type="text" id="search" >
<label>
</label>
<input type="submit" name="cari" value="Cari">
</p>
<p> </p>
</form>
</body>
</html>
lalu simpan beri nama cari.php<html>
<head>
<title></title>
</head>
<body>
<h1>Search</h1>
<form action="hasilcari.php" method="POST">
<p>
Jenis
<input name="search" type="text" id="search" >
<label>
</label>
<input type="submit" name="cari" value="Cari">
</p>
<p> </p>
</form>
</body>
</html>
9. File baru lagi source dibawah ini :
ekoninjarr.blogspot.com
<html>
<head>
<title>Daftar Barang</title>
</head>
<body>
<p>
<?php
mysql_connect("localhost", "root", "") or die ("Gagal konek ke server.");
mysql_select_db("dbuas") or die ("Gagal membuka database.");
?>
</p>
<p align="center">MENU</p>
<table width="536" height="96" border="5" align="center">
<tr>
<th width="43" height="36">Kode</th>
<th width="102">Nama Produk </th>
<th width="50">Jenis</th>
<th width="82">Harga</th>
<th width="82">Rubah</th>
<th width="82">Hapus</th>
</tr>
<?php
$query = "select * from tabbarang";
$result = mysql_query($query);
while ($buff = mysql_fetch_array($result)){
?>
<tr>
<td><?php echo $buff['kode']; ?></td>
<td><?php echo $buff['namaproduk']; ?></td>
<td><?php echo $buff['jenis']; ?></td>
<td><?php echo $buff['harga']; ?></td>
<td width="43"><a href="edit.php?jenis=<?php echo $buff['jenis']; ?>">Rubah</a></td>
<td width="43"><a href="hapus.php?jenis=<?php echo $buff['jenis']; ?>">Hapus</a></td>
</tr>
<?php
}
mysql_close();
?>
</table>
<p> </p>
<td><p align="center"><a href="tambah.php"> ADD</a> </p></td>
<p><td><p align="center"><a href="cari.php"> SEARCH</a> </p></td>
</body>
</html>
lalu simpan beri nama hasilcari.php
<html>
<head>
<title>Daftar Barang</title>
</head>
<body>
<p>
<?php
mysql_connect("localhost", "root", "") or die ("Gagal konek ke server.");
mysql_select_db("dbuas") or die ("Gagal membuka database.");
?>
</p>
<p align="center">MENU</p>
<table width="536" height="96" border="5" align="center">
<tr>
<th width="43" height="36">Kode</th>
<th width="102">Nama Produk </th>
<th width="50">Jenis</th>
<th width="82">Harga</th>
<th width="82">Rubah</th>
<th width="82">Hapus</th>
</tr>
<?php
$query = "select * from tabbarang";
$result = mysql_query($query);
while ($buff = mysql_fetch_array($result)){
?>
<tr>
<td><?php echo $buff['kode']; ?></td>
<td><?php echo $buff['namaproduk']; ?></td>
<td><?php echo $buff['jenis']; ?></td>
<td><?php echo $buff['harga']; ?></td>
<td width="43"><a href="edit.php?jenis=<?php echo $buff['jenis']; ?>">Rubah</a></td>
<td width="43"><a href="hapus.php?jenis=<?php echo $buff['jenis']; ?>">Hapus</a></td>
</tr>
<?php
}
mysql_close();
?>
</table>
<p> </p>
<td><p align="center"><a href="tambah.php"> ADD</a> </p></td>
<p><td><p align="center"><a href="cari.php"> SEARCH</a> </p></td>
</body>
</html>
Note: simpan semua nya dalam satu folder yang dibuat tadi ya,,,yang tadi itu lho di C-->xampp-->htdocs-->UAS2
Sekarang buka Mozilla Firefox jalankan programnya, yang dijalankan pertama yang menuutama.php yuaaaaaa....
Semoga berhasilllllllllll selamat mencoba sobatkuu......!!!
Cara Membuat Aplikasi Simpan Tambah Edit Hapus Dan Cari Dengan PHP MYSQL
4/
5
Oleh
Unknown
6 comments
Tulis commentsIjin Share, Buat Teman-teman yg masih Bingung PHP, Berikut ini Tutorial Lengkap PHP saya : Pemograman PHP
Replyfungsi cari nya gmn ya gan ?
ReplyCoding dr hasil cari mana ya kok sama dengan coding menu utama
ReplyYa file save kat mana ya
ReplyYa file save kat mana ya
Replymantap gan tombol copy pastenya dimatiin
Reply