Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3. include 'koneksi.php';
  4.  
  5. $id = $_GET['id'];
  6.  
  7. $sql = 'DELETE from pesan where id = "'.$id.'"';
  8.  
  9. mysqli_query($connect, $sql);
  10.  
  11. header('location:index.php');