1 Star 0 Fork 0

毕设研究小组/PHP疫情的增删改查的作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin_video_delete_end.php 369 Bytes
一键复制 编辑 原始数据 按行查看 历史
dearmite 提交于 2023-03-10 10:47 . 原始的这些文件
<?php
include_once ("conn.php");
$videoid = $_GET['videoid'];
var_dump($videoid);
$sql =<<<SQL
DELETE FROM video
WHERE id= $videoid
SQL;
$query=mysqli_query($link,$sql);
if($query)
{
echo "<script>alert('delete sucess');location='admin_vider_start.php';</script>";
}
else
{
echo "<script>alert('delete fail');location='admin_vider_start.php';</script>";
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dearmite/beautiful-user-other-manage.git
git@gitee.com:dearmite/beautiful-user-other-manage.git
dearmite
beautiful-user-other-manage
PHP疫情的增删改查的作业
master

搜索帮助