PHP Classes

File: admin/delete.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Simple PHP Blog Script   admin/delete.php   Download  
File: admin/delete.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple PHP Blog Script
Manage blog articles stored in a MySQL database
Author: By
Last change:
Date: 1 year ago
Size: 291 bytes
 

Contents

Class file image Download
<?php
$con
= mysqli_connect("localhost", "root", "", "blog") or die();
$id = $_GET['id'];
mysqli_query($con, "DELETE FROM post WHERE id='$id' ");
mysqli_query($con, "DELETE FROM comment WHERE postid='$id' ");
echo
"<script>window.location.href='javascript:history.go(-1)'</script>";
?>