Menghapus Data Di Database Dengan PHP, untuk menghapus data di tabel dengan menampilkan data terlebih dahulu, berikut ini cara menghapus data di database mysql menggunakan PHP
tampilkan data membuat file
anggota.php
<?php
include "koneksi.php";
?>
<p align="center"><strong>Tabel anggota </strong></p>
<table width="644" border="1" align="center" cellspacing="0">
<tr bgcolor="#FFFF99">
<td width="36" height="25"><div align="center"><strong>No</strong></div></td>
<td width="237"><div align="center"><strong>NAMA</strong></div></td>
<td width="143"><div align="center">
<blockquote>
<p><strong>E-MAIL</strong></p>
</blockquote>
</div></td>
<td width="95"><strong>ALAMAT</strong></td>
<td width="42"><div align="center"><strong>AGAMA</strong></div></td>
<td width="65"><div align="center"><strong>Aksi</strong></div></td>
</tr>
<?php
$sql="select * from anggota ";
$query=mysql_query($sql);
$no=1;
while($data=mysql_fetch_array($query)){
?>
<tr>
<td><div align="center"><?php echo $no; ?></div></td>
<td><?php echo $data['name']; ?></td>
<td><?php echo $data['email']; ?></td>
<td><?php echo $data['alamat']; ?></td>
<td><div align="center"><?php echo $data['agama']; ?></div></td>
<td><div align="center">
<a href="javascript:if(confirm('Anda yakin akan menghapus data ini??')){document.location='
hapus.php?id=
<?php echo $data['user_id']; ?>';}">hapus</a></div></td>
</tr>
<?php $no++;}?>
</table>
<p align="center"> </p>
<p> </p>
</td>
</tr>
</table>
membuat file
hapus.php
<?php
include "koneksi.php";
if (isset($_GET[id]))
{
$id = $_GET[id];
} else {
die ("Error. Id anggota belum dipilih! ");
}
if ($id==1)
{
echo "<script>alert('Halaman ini tidak bisa dihapus!');javascript:history.go(-1);</script>";
}
elseif (!empty($id)) {
$SQL = "delete from anggota where user_id='$id'";
if(! mysql_query($SQL))
{
echo "Data tidak terhapus!<br>\n";
}
header("location:anggota.php");
}
?>
Demikian
cara menghapus data di database dengan php.
Title : Menghapus Data Di Database Dengan PHP
Description : Menghapus Data Di Database Dengan PHP , untuk menghapus data di tabel dengan menampilkan data terlebih dahulu, berikut ini cara menghapus ...