资源简介
一个简单的进销存管理系统,可以用作php作业,简单好理解,里面有数据库
代码片段和文件信息
ta http-equiv=“Content-Type“ content=“text/html; charset=utf-8“>
//初始化session
session_cache_expire(30);
session_start();
// 如果已经登录过,直接退出
/*if(isset($_SESSION[‘user‘])) {
//重定向到管理留言
header(“Location:browse.php“);
// 登录过的话,立即结束
exit;
}*/
require (‘dbconnect.php‘);
// 获得参数
$nickname=$_POST[‘id‘];
$password=$_POST[‘password‘];
echo $nickname.“
“.$_POST[‘id‘];
echo $password.“
“.$_POST[‘password‘];
// 检查帐号和密码是否正确
$query=“select * from user where id=‘$nickname‘ and password=‘$password‘“;
$msg=mysqli_query($link$query);
/*$result=mysqli_fetch_array($msg);*/
// 如果用户登录正确
/*if( !empty($result)) {
//注册session变量,保存当前会话用户的昵称
session_register(“user“);
$user=$nickname;
// 登录成功重定向到管理页面
header(“Location:browse.php“);
}*/
if($msg){
print(“插入成功
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1340 2019-12-03 07:55 test\buy\add_buy.php
文件 1268 2019-12-03 09:32 test\buy\a_buy.php
文件 1137 2019-12-03 07:55 test\buy\check_buy.php
文件 1227 2019-12-03 07:55 test\buy\search_buy.php
..A..H. 519 2019-12-03 10:02 test\buy\_notes\dwsync.xm
文件 1411 2019-12-03 12:07 test\checklogin.php
文件 1433 2019-12-04 11:02 test\company\a.php
文件 960 2019-12-03 07:54 test\company\ab.php
文件 1512 2019-12-03 09:34 test\company\search_company.php
..A..H. 398 2019-12-04 11:02 test\company\_notes\dwsync.xm
文件 693 2019-11-30 17:04 test\dbconnect.php
文件 2127 2019-12-03 09:53 test\head.php
文件 2238 2019-12-03 14:29 test\index.html
文件 1247 2019-12-03 07:45 test\login.php
文件 403 2019-12-03 07:18 test\logout.php
文件 6446 2019-12-03 11:49 test\other\addcompany.php
文件 7325 2019-12-03 09:50 test\other\addproduct.php
文件 2163 2019-12-03 09:50 test\other\browse.php
文件 7434 2019-12-03 09:50 test\other\buy.php
文件 2792 2019-12-03 09:50 test\other\modify.php
文件 1669 2019-12-03 09:50 test\other\new.html
文件 2006 2019-12-03 09:50 test\other\product.sql
文件 5155 2019-12-03 09:50 test\other\product_backup.sql
文件 7460 2019-12-03 09:50 test\other\sell.php
文件 122 2019-12-03 09:50 test\other\unti
文件 1652 2019-12-03 09:50 test\other\unti
文件 122 2019-12-03 09:50 test\other\unti
文件 122 2019-12-03 09:50 test\other\unti
文件 493 2019-12-03 09:50 test\other\web.php
..A..H. 1662 2019-12-03 12:18 test\other\_notes\dwsync.xm
............此处省略28个文件信息
评论
共有 条评论