PHP-MySQL-Blog-Website-with.../admin/delete-category.php
2024-03-29 12:06:56 +05:30

32 lines
1,003 B
PHP

<?php
include "config/database.php";
if(!isset($_SESSION['user_is_admin'])){
header("location: " . ROOT_URL . "logout.php");
//destroy all sessions and redirect user to login page
session_destroy();
}
if(isset($_GET['id'])){
$id=filter_var($_GET['id'],FILTER_SANITIZE_NUMBER_INT);
// update id of post that belong to this category as uncategorized
$update_query="UPDATE posts SET category_id=2 WHERE category_id=$id";
$update_result=mysqli_query($connection,$update_query);
if(!mysqli_errno($connection)){
//delete category
$query="DELETE FROM categories WHERE id='$id' LIMIT 1";
$result= mysqli_query($connection,$query);
$_SESSION['edit-category-success']="Category was deleted successfuly";
header("location: " . ROOT_URL . "admin/manage-categories.php");
die();
}
}else{
header("location: " . ROOT_URL . "admin/manage-categories.php");
die();
}
?>