1 Star 0 Fork 0

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin_voluntary_style_add_end.php 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
dearmite 提交于 2023-03-10 10:47 . 原始的这些文件
<?php
include_once ('conn.php');
header("Content-type:text/html;charset=utf-8");
$user_name = $_POST['username'];
$thing = $_POST['thing'];
$time = $_POST['time'];
$sql =<<<SQL
SELECT * FROM user_infor
where name = '{$user_name}'
SQL;
$query = mysqli_query($link,$sql);
$infors = mysqli_fetch_all($query,MYSQLI_ASSOC);
if($infors){
$phone = $infors[0]['phone'];
$sql =<<<SQL
INSERT INTO thing
(name,phone,things,time)
VALUES('{$user_name}','{$phone}','{$thing}','{$time}')
SQL;
$query = mysqli_query($link,$sql);
if($query){
echo "<script>alert('添加成功');location='admin_voluntary_style_show.php';</script>";
}else{
echo "<script>alert('添加失败');location='admin_voluntary_style_show.php';</script>";
}
}else{
echo "<script>alert('添加失败,没有该名志愿者');location='admin_voluntary_style_show.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

搜索帮助