Files
danche/admin/eacher/del.php

12 lines
191 B
PHP

<?php
include_once("../../common/init.php");
check_loginthe1();
if ($_REQUEST["del"]) {
db_del($_REQUEST["del"],$_REQUEST["id"]);
goBakMsg("删除成功");
} else {
die;
}
?>