hapus_komen.php 157 Bytes
Newer Older
1 2 3 4 5 6 7
<?php
	include 'koneksi.php';
	
	$id = $_GET['id'];
	mysql_query("DELETE FROM komentar WHERE id_komentar = '$id'");
	header('Location: daftar_komen.php');
?>