前台功能:
1、用户注册、用户登录、退出登录
2、个人信息查看、个人信息修改
3、查看已借出货物
4、货物借出、货物归还
后台功能:
1、后台登录
2、仓储管理:货物查看、货物入库、货物出库、货物修改
3、普通用户管理:查看账户、添加账户、修改账号、删除账号
4、退出登录
PHP编程:Sublime Text、phpstorm
编码:utf-8
SQL:mysql
环境搭建:PHP study(PHP 5.5 + Apache)
网站首页
货物查看
货物借出
货物归还
用户登录
查看个人信息
修改个人信息
查看借出货物
退出登录
用户注册
地址:/admin/admin_login.php
后台登录
管理后台首页
货物查看
货物入库
货物出库
货物修改
查看账号
添加账号
删除账号
修改账号
修改管理员密码
退出登录
grupdate.php文件
<?php include("config.php"); ?> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>仓储管理系统</title> <script type="text/javascript" src="./js/jquery-3.6.0.min.js"></script> <script type="text/javascript" src="./js/bootstrap.min.js"></script> <link rel="stylesheet" type="text/css" href="./js/bootstrap.min.css" /> </head> <body> <table width="30%" align="center"> <tr> <td> <table class="table table-striped"> <form method="post" action=""> <tr> <th height=25 colspan=8 align="center" >修改个人信息</th> </tr> <tr> <td align="right" >用户名:</td> <td ><input name="username" type="username" id="username" size="20"></td> </tr> <tr> <td align="right">密码:</td> <td><input name="password" type="password" id="password" size="20"></td> </tr> <tr> <td align="right">单位:</td> <td><input name="danwei" type="danwei" id="danwei" size="20"></td> </tr> <tr> <td align="right">手机号:</td> <td><input name="shoujihao" type="shoujihao" id="shoujihao" size="20"></td> </tr> <tr> <td colspan="2" align="center" > <input type="submit" name="Submit" value="确定修改"> </td> </tr> </td> </tr> </form> </table> </td> </tr> </table> <?php if ($_POST["Submit"]) { $username=$_POST["username"]; $password=$_POST["password"]; $danwei=$_POST["danwei"]; $shoujihao=$_POST["shoujihao"]; $sql="update user set username='$username',password='$password',danwei='$danwei',phono='$shoujihao' WHERE id=".$_SESSION['id']; $rs=mysql_query($sql); if($rs){ echo "<script language=javascript>alert('修改成功');window.location='grzx.php'</script>"; } } ?> </body> </html>
网站结构,文件数量较多
小额有偿,介意勿扰