代码拉取完成,页面将自动刷新
同步操作将从 ctx2008/2019-2020上_项目2_在线投票系统 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。