1 Star 0 Fork 1

yihoc/WEBWMS

forked from gujiejing/WEBWMS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
delcust.php 863 Bytes
一键复制 编辑 原始数据 按行查看 历史
wisdom 提交于 2017-11-03 23:31 . upupup new alll
<?php
header('Content-type: text/html; charset=utf-8');
require_once('connDB.php');
$id = " ";
if(isset($_POST['id']) && isset($_POST['delsure'])){
$id = $_POST['id'];
$sql="DELETE FROM cust WHERE cust.id = $id ";
echo $sql;
mysql_query($sql,$dbc);
mysql_close($dbc);
header("Location: " ."cust.php" );
}
if(isset($_GET['id'])){
$id = $_GET['id'];
//echo $id;
echo '您确认要删除此客户资料吗?<br>';
echo 'Do you sure to Delete this Customer';
echo '<form action="delcust.php" method="POST">';
echo '<input name="id" type="hidden" id="id" value="'.$id.'"/>';
echo '<input name="delsure" type="hidden" id="delsure" value="ture" />';
echo '<input type="submit" name="Submit" value="(是的)YES DO IT" />';
echo '</form>';
}
//DELETE FROM cust WHERE cust.id = 3
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/yihoc/WEBWMS.git
git@gitee.com:yihoc/WEBWMS.git
yihoc
WEBWMS
WEBWMS
master

搜索帮助