ruạṛ
<?php /** * Remove region from the database * @version 0.9 * @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(); /** * get and validate id * @var int $region_id * @var object $n * @var string $message */ if(!$region_id = is_numeric_id($_GET['reg'])) { getout('Region not found','stockists.php'); exit; } $n = new stockist_region($region_id); $message = ''; if(!$n->region_id){ getout('Invalid region id'); exit; } //else $n->delete(); $message .= 'Region deleted successfully.'; getout($message, '/admin/stockists.php'); exit; ?>
cải xoăn