ruạṛ
<?php /** * Add a new category * @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'; $connID = connect_to_db(); $c = new category(); $message = ''; if(!$c->create()) { $_SESSION['passback']['parent_id'] = $c->parent_id; $_SESSION['passback']['cat_name'] = $c->name; $_SESSION['passback']['position'] = $c->position; getout($message); exit; } //else unset($_SESSION['passback']); getout($message,'../edit-category.php?cat='.$c->cat_id); exit; ?>
cải xoăn