deletecomment_process.php 228 Bytes
Newer Older
1 2 3 4
<?php
	require_once("koneksi.php");
	$id=$_GET['id'];
	mysqli_query($koneksi, "DELETE FROM t_komentar where id_komentar='$id'");
5
	echo "<script>alert('Saran berhasil dihapus');window.location = 'processcomment.php'</script>";
6
?>