最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php 产品进销存管理系统开发实例教程
时间:2022-06-24 18:35:01 编辑:袖梨 来源:一聚教程网
首页文件 index.html
产品进销存管理系统 |
欢迎光临进销存管理系统! |
头部.head.php
产品进销存管理系统 |
数据库教程连接文件dbconnect.php
$conn=mysql教程_connect("localhost","phpdb","phpdb")
or die("不能连接数据库服务器: ".mysql_error());
mysql_select_db("product",$conn) or die ("不能选择数据库: ".mysql_error());
?>
数据库结构:
product.sql
drop database if exists product;
create database product;
use product;
CREATE TABLE user (
id int(3) NOT NULL auto_increment,
name varchar(20) not null,
password varchar(50) NOT NULL,
tel varchar(20),
regtime datetime not null,
PRIMARY KEY (id)
);
CREATE TABLE company (
id int(6) not null auto_increment,
name varchar(100) NOT NULL,
address varchar(255) NOT NULL,
tel varchar(100) NOT NULL,
product varchar(255),
linkman varchar(100) NOT NULL,
addtime datetime NOT NULL,
PRIMARY KEY (id)
);
create table product (
productid int(6) not null auto_increment,
companyid int(6) not null,
name varchar(50) not null,
brand varchar(50) not null,
type varchar(50) not null,
introduction text,
other text,
primary key (productid)
);
CREATE TABLE buylog(
id int(6) NOT NULL auto_increment,
user varchar(20) not null,
productid int(6) not null,
amount int(6) not null,
buyprice decimal(9,2) DEFAULT '0.00' NOT NULL,
cost decimal(9,2) DEFAULT '0.00' NOT NULL,
ip varchar(20),
buytime datetime NOT NULL,
other text,
primary KEY (id)
);
create table stock (
productid int(6) not null,
amount int(6) not null,
buyprice decimal(9,2) DEFAULT '0.00' NOT NULL,
sellprice decimal(9,2) DEFAULT '0.00' NOT NULL,
cost decimal(9,2) DEFAULT '0.00' NOT NULL,
introduction text,
buytime datetime not null,
other text,
primary key(productid, buyprice)
);
CREATE TABLE selllog(
id int(10) NOT NULL auto_increment,
user varchar(20) not null,
productid int(6) not null,
amount int(6) not null,
buyprice decimal(9,2) DEFAULT '0.00' NOT NULL,
sellprice decimal(9,2) DEFAULT '0.00' NOT NULL,
cost decimal(9,2) DEFAULT '0.00' NOT NULL,
sellmoney decimal(9,2) DEFAULT '0.00' NOT NULL,
ip varchar(20),
buytime datetime NOT NULL,
selltime datetime not null,
other text,
primary KEY (id)
);
下面我们从用户注册开始。打开index.html文件,点击注册,
注册reg.php
include("head.php");
?>
regok.php把数据保存到mysql数据库
//初始化session
session_cache_expire(30);
session_start();
// 包含数据库连接文件和头文件
require ('dbconnect.php');
include ('head.php');
?>
// 取得网页的参数
$name=$_POST['name'];
$password=$_POST['password'];
$tel=$_POST['tel'];
// 加密密码
$password=md5($password);
// 取得当前时间和日前
$now = date("Y-m-d H:i:s");
// 连接数据库,注册用户
$sql="insert into user(name,password, tel, regtime) values('$name','$password','$tel','$now')";
mysql_query($sql,$conn) or die ("注册用户失败: ".mysql_error());
// 获得注册用户的自动id,以后使用此id才可登录
$result=mysql_query("select last_insert_id()",$conn);
$re_arr=mysql_fetch_array($result);
$id=$re_arr[0];
// 注册成功,自动登录,注册session变量
session_register("user");
$user=$id;
echo "
注册成功! |
您的注册id是:".$id; echo ",请您记住,以后用此id登录! |
?>
好了用户注册成功了,我们就用刚才注册的用户名adsense,www.111com.net登陆吧。
登录login.php页面代码
//初始化session
session_cache_expire(30);
session_start();
// $_SESSION['UserName'] 不能用$UserName变量代替
if(isset($_SESSION['user'])) {
//重定向到查看存货
header("Location:browse.php");
// 登录过的话,立即结束
exit;
}
include ('head.php');
?>
}
// 如果是提交后处理
else {
// 查看信息是否填写完整
if (($name=="")||($address=="")||($tel=="")||($linkman=="")){
echo "
exit();
}
// 如果是添加新记录
if ($reg){
$result = mysql_query("SELECT * FROM company WHERE name='$name'",$conn);
$userrow=mysql_fetch_array($result);
if (!empty($userrow)) {
echo "
exit();
}
// 取得当前时间和日前
$now = date("Y-m-d H:i:s");
$query = "insert into company(name, address, tel, linkman, product, addtime) values ('$name','$address', '$tel', '$linkman', '$product', '$now')";
$res = mysql_query($query, $conn) or die("添加厂商失败: ".mysql_error());
}
elseif ($mod){
// 取得当前时间和日前
$now = date("Y-m-d H:i:s");
$query = "update company set name='$name',address='$address', tel='$tel', linkman='$linkman', product='$product' where id='$old_id'";
$res = mysql_query($query, $conn) or die("修改厂商失败: ".mysql_error());
}
?>
恭喜您!!
登记完成!
添加产品addproduct.php
//初始化session
session_cache_expire(30);
session_start();
// 如果没有登录,退出
if(!isset($_SESSION['user'])) {
echo "
";
echo "";
echo "您还没有登录,请登录!";
echo "
exit();
}
include ('head.php');
require ('dbconnect.php');
?>
// 如果是提交前
if (($reg=="")&&($mod=="")) { ?>
}
// 如果是提交后处理
else {
// 查看信息是否填写完整
if (($name=="")||($brand=="")||($type=="")||($old_id=="")){
echo "
exit();
}
// 如果是添加新记录
if ($reg){
$result = mysql_query("SELECT * FROM product WHERE name='$name' and companyid='$old_id' and brand='$brand' and type='$type'",$conn);
$userrow=mysql_fetch_array($result);
if (!empty($userrow)) {
echo "
exit();
}
$query = "insert into product(companyid, name, brand, type, introduction, other) values ('$old_id','$name','$brand', '$type', '$intro', '$other')";
$res = mysql_query($query, $conn) or die("添加产品记录失败: ".mysql_error());
}
elseif ($mod){
$query = "insert into product(companyid, name, brand, type, introduction, other) values ('$old_id','$name','$brand', '$type', '$intro', '$other')";
$query = "update product set name='$name',brand='$brand', type='$type', introduction='$intro', other='$other' where productid='$old_pid'";
$res = mysql_query($query, $conn) or die("修改产品记录失败: ".mysql_error());
}
?>
恭喜您!!
登记完成!
进货buy.php
//初始化session
session_cache_expire(30);
session_start();
// 如果没有登录,退出
if(!isset($_SESSION['user'])) {
echo "
";
echo "";
echo "您还没有登录,请登录!";
echo "
exit();
}
include ('head.php');
require ('dbconnect.php');
?>
// 如果是提交前
if ($buy=="") { ?>
}
// 如果是提交后处理
else {
// 查看信息是否填写完整
if (($amount=="")||($buyprice=="")||($old_pid=="")||($old_id=="")){
echo "
exit();
}
// 可以购买
// 取得当前时间和日前
$now = date("Y-m-d H:i:s");
// 得到登录ip.
$ip=getenv (REMOTE_ADDR);
$person=$_SESSION['user'];
$cost=$buyprice*$amount;
// 记录这次购买活动
$buysql="insert into buylog(user, productid, amount, buyprice, cost, ip, buytime, other) values('$person', '$old_pid', '$amount', '$buyprice', '$cost', '$ip', '$now', '$other')";
mysql_query($buysql,$conn) or die("购买产品失败: ".mysql_error());
// 登记已购买的产品入库
$sellprice=$buyprice*1.20;
// 检查是否已有该产品存货而且进价一样
$result=mysql_query("select * from stock where productid='$old_pid' and buyprice='$buyprice'", $conn);
$row=mysql_fetch_array($result);
// 如果没有存货,登记存货
if (empty($row)){
$sql="insert into stock(productid, amount, buyprice, sellprice, cost, introduction, buytime, other) values('$old_pid', '$amount', '$buyprice', '$sellprice', '$cost', '$intro', '$now', '$other')";
mysql_query($sql,$conn) or die("购买产品失败: ".mysql_error());
}
// 如果已有存货,数量增加
else {
$amount+=$row[amount];
$cost+=$row[cost];
$sql="update stock set amount=$amount, cost=$cost, buytime=$now where productid='$old_pid' and buyprice='$buyprice'";
mysql_query($sql, $conn) or die("购买产品失败: ".mysql_error());
}
?>
购买成功!
当然货好了,我们要出售货品了,就会出出售页面.
销售sell.php
//初始化session
session_cache_expire(30);
session_start();
// 如果没有登录,退出
if(!isset($_SESSION['user'])) {
echo "
";
echo "";
echo "您还没有登录,请登录!";
echo "
exit();
}
include ('head.php');
require ('dbconnect.php');
?>
// 如果是提交前
if ($sell=="") { ?>