ok

Mini Shell

Direktori : /home2/selectio/public_html/pvmatricschool.com/dashboard/admin/
Upload File :
Current File : /home2/selectio/public_html/pvmatricschool.com/dashboard/admin/category-delete.php

<?php require_once('header.php'); ?>

<?php
// Preventing the direct access of this page.
if(!isset($_REQUEST['id'])) {
	header('location: logout.php');
	exit;
} else {
	// Check the id is valid or not
	$statement = $pdo->prepare("SELECT * FROM tbl_category WHERE category_id=?");
	$statement->execute(array($_REQUEST['id']));
	$total = $statement->rowCount();
	if( $total == 0 ) {
		header('location: logout.php');
		exit;
	}
}
?>

<?php

	// Delete from tbl_category
	$statement = $pdo->prepare("DELETE FROM tbl_category WHERE category_id=?");
	$statement->execute(array($_REQUEST['id']));

	header('location: category.php');
?>

Zerion Mini Shell 1.0