hapus_komen.php 226 Bytes
Newer Older
1 2 3 4 5 6
<?php
session_start();
include_once 'functions/fungsi.php';
include_once 'connection/koneksi.php';
	
	$id = $_GET['id'];
7
	mysqli_query($conn, "DELETE FROM komentar WHERE id = '$id'");
8 9
	header('Location: list_komentar.php');
?>