1 Star 0 Fork 2

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
modify.php 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
ctx2008 提交于 2019-12-31 07:55 . 最终文件上传
<?php
session_start();
include_once "checkAdmin.php";
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>修改车辆资料</title>
<style>
h1 {
text-align: center;
}
.main {
width: 50%;
margin: 0 auto
}
.main table {
width: 100%
}
#x0,#x1{width: 30px;height: 30px;display: none}
#code{cursor: pointer;}
</style>
</head>
<body>
<h1>资料修改</h1>
<?php
$id = isset($_GET['id']) ? $_GET['id'] : 0;
$sql = "select * from car where id = $id";
include_once "conn.php";
$result = mysqli_query($conn,$sql);
$info = mysqli_fetch_array($result);
if(!$info){
echo "<script>alert('车辆未找到');history.back();</script>";
exit;
}
?>
<div class="main">
<form action="postCarModify.php" method="post" onSubmit="return Validator.Validate(this,3)" enctype="multipart/form-data">
<table style="border-collapse:collapse " border="1" width="100%" cellpadding="10" bordercolor="gray" cellspacing="0">
<tr>
<td align="center">车辆名称</td>
<td align="left">
<input name="carname" value="<?php echo $info['carname'];?>">
</td>
</tr>
<tr>
<td align="center">车辆描述</td>
<td align="left">
<textarea name="description"><?php echo $info['description'];?></textarea>
</td>
</tr>
<tr>
<td align="center">车辆图片</td>
<td align="left">
<input type="file" name="carpic"><input type="hidden" name="MAX_FILE_SIZE" value="2048" />
</td>
</tr>
<tr>
<td align="center">
<input type="submit" value="提交"><input type="hidden" name="carid" value="<?php echo $id;?>">
</td>
<td align="left">
<input type="reset" value="重置">
</td>
</tr>
</table>
</form>
</div>
</body>
<script src="js.js"></script>
<script src="jquery.js"></script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fyc5/vote.git
git@gitee.com:fyc5/vote.git
fyc5
vote
2019-2020上_项目2_在线投票系统
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385