%PDF- %PDF-
Direktori : /home/medipszd/public_html/admin/ |
Current File : /home/medipszd/public_html/admin/category_delete.php |
<?php include 'includes/session.php'; if(isset($_POST['delete'])){ $id = $_POST['id']; $conn = $pdo->open(); try{ $stmt = $conn->prepare("DELETE FROM category WHERE id=:id"); $stmt->execute(['id'=>$id]); $_SESSION['success'] = 'Category deleted successfully'; } catch(PDOException $e){ $_SESSION['error'] = $e->getMessage(); } $pdo->close(); } else{ $_SESSION['error'] = 'Select category to delete first'; } header('location: category.php'); ?>