1 Star 4 Fork 1

Taknife/PublicSentiment

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lam_del.php 685 Bytes
一键复制 编辑 原始数据 按行查看 历史
Taknife 提交于 2021-08-28 19:35 . 修改源码
<?php
$result = mysqli_connect('localhost','root','root');
if(!$result){
echo "数据库连接失败";
}
mysqli_query($result,"set names 'utf8'");
$select_db = mysqli_select_db($result,"lam");
if(!$select_db){
echo "不能连接到此数据库:\n".mysqli_error();
}
$id = $_GET['id'];
if(isset($id)){
$sql = "delete from guestbook where id=$id";
$re = mysqli_query($result,$sql);
if($re){
echo "<script>alert('删除成功!');location.href='lam_print.php';</script>";
}else{
echo "<script>alert('删除失败!');location.href='lam_print.php';</script>";
}
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/taknife/public-sentiment.git
git@gitee.com:taknife/public-sentiment.git
taknife
public-sentiment
PublicSentiment
master

搜索帮助