Current Path : home/irplbiz/public_html/universalleather/admin/ |
Current File : /home/irplbiz/public_html/universalleather/admin/delete_category1.php |
<?php ob_start(); session_start(); if(!isset($_SESSION['username'])) { header("location: index.php?login=expired"); } include('includes/config.php'); $sql = "DELETE FROM `".$ptr."category` WHERE `cat_id` = '".$_REQUEST['id']."'"; mysql_query($sql); header("location: manage_category.php"); ?>