cedit.php
资源名称:BBWPS.rar [点击查看]
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
PHP
- <?php
- /*
- [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
- This is NOT a freeware, use is subject to license terms
- 时间:2007年12月
- 描述:重命名城市
- */
- error_reporting(0);
- $newname=$_POST['newname'];
- $cid=$_POST['cid'];
- require("../../config.php");
- require("../../class/mysql_class.php");
- require_once("../../function/function.php");
- $db= new DB($hostname,$username,$password,$database);
- if(!$cid){
- MsgError("请先添加城市");
- }
- //********修改城市*******
- if($_GET['action']==1){
- if(!$newname){
- MsgError("新名称不能为空");
- }
- $db->query("update ".$prefix."city set cname = '".$newname."' where cid= '".$cid."' ",1);
- }
- //********删除城市*******
- if($_GET['action']==2){
- $sql="delete from ".$prefix."city where (cid ='".$cid."' or cparent='".$cid."')";
- $db->query($sql,1);
- }
- ExeSuccess("提交成功!","mc.php?cid={$cid}");
- $db->close;
- ?>