1 Star 0 Fork 2

fyc05/2019-2020上_项目2_在线投票系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
postCarModify.php 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
ctx2008 提交于 2019-12-31 07:55 . 最终文件上传
<?php
session_start();
include_once "checkAdmin.php";
$id = $_POST['carid'];
$carName = $_POST['carname'];
$description = $_POST['description'];
include_once "conn.php";
if ($_FILES["carpic"]["error"] >0 and $_FILES["carpic"]["error"] < 4) {
echo "<script>alert('上传文件出错');history.go(-1);</script>";
exit;
}
$replacePic = 0; //默认不替换图片
if (!empty($_FILES["carpic"]["name"])) { //判断是否有选择图片
if($_FILES["carpic"]["size"] > 2048*1024){ //文件尺寸超过2MB
echo "<script>alert('上传文件大小最多2MB');history.go(-1);</script>";
exit;
}
$path = "image/"; //上传路径
if (!file_exists($path)) {//检查是否有该文件夹,如果没有就创建,并给予最高权限
mkdir($path, 0700);
}//END IF
//允许上传的文件格式
$tp = array("image/gif", "image/pjpeg", "image/jpeg", "image/jpg", "image/png");
//检查上传文件是否是允许上传的类型
if (!in_array($_FILES["carpic"]["type"], $tp)) {
echo "<script>alert('上传图片只支持JPG、GIF、PNG格式');history.go(-1);</script>";
exit;
}//END IF
$ext = end(explode('.',$_FILES["carpic"]["name"])); //得到扩展名
$today = date("YmdHis") . rand(1000,9999); //获取时间并赋值给变量
$img = $today .".". $ext; //得到新的文件名
$file2 = $path . $img; //图片的完整路径
$result = move_uploaded_file($_FILES["carpic"]["tmp_name"], $file2);
//exit;
if(!$result){
echo "<script>alert('上传文件出错');history.go(-1);</script>";//注意,此处传递给move_uploaded_file的第一个参数为上传到服务器上的临时文件
exit;
}
$replacePic = 1;
}
if($replacePic){ //说明更新资料时,连图片一起更新
$sql = "update car set carname = '$carName',description = '$description',carpic = '$file2' where id = $id";
}
else{ //说明不更新图片
$sql = "update car set carname = '$carName',description = '$description' where id = $id";
}
$result = mysqli_query($conn, $sql);
if ($result) {
echo "<script>alert('修改成功');location.href='admin.php';</script>";
exit;
} else {
echo "<script>alert('修改失败');location.href='admin.php';</script>";
exit;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fyc5/vote.git
git@gitee.com:fyc5/vote.git
fyc5
vote
2019-2020上_项目2_在线投票系统
master

搜索帮助