ruạṛ
<?php /** * Delete category and any subcategories * unlike earlier versions we do not also delete products they now become uncategorised * @version 0.10 * @author Robert Urquhart <programmer@activatedesign.co.nz> * @package WEP-CMS */ session_start(); require_once $_SERVER['DOCUMENT_ROOT'].'/admin/scripts-includes/universal.php'; $conn_ID = connect_to_db(); $cat_id = is_numeric_id($_GET['cat'],0); $c = new category($cat_id); $message = ''; $c->delete(); getout($message, '../categories.php'); exit; ?>
cải xoăn