1.php大作业完成了订单功能实现
部分代码:
<?php
/**
* Created by PhpStorm.
* User: Halo
* Date: 2019/6/8
* Time: 9:07
*/
if(!empty($_GET)) {
if(isset($_GET["message"]))
{
$message = $_GET["message"];
echo "<script>alert('$message');</script>";
}
}
if (!session_id()) session_start();
if(isset($_SESSION["type"]))
{
if($_SESSION["type"]!=2)
{
header("location:goodlist.php?message=NotAdmin!");
return;
}
}
else
{
header("location:goodlist.php?message=NotAdmin!");
return;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>订单管理</title>
</head>
<body style="text-align:center;">
<h1>订单管理</h1>
<br/>
<br/>
<table align="center" border="1" cellspacing="0" style="50%;">
<tr>
<th style="background:yellow;">订单号</th>
<th style="background:yellow;">收货人</th>
<th style="background:yellow;">用户</th>
<th style="background:yellow;">收货人地址</th>
<th style="background:yellow;">商品id</th>
<th style="background:yellow;">商品数量</th>
<th style="background:yellow;">订单金额</th>
<th style="background:yellow;">手机号</th>
<th style="background:yellow;">商品名称</th>
<th style="background:yellow;">是否完成</th>
<th style="background:yellow;">操作</th>
</tr>
<?php
//连接数据库
//判断连接成功
//选择数据库
//设置字符集
//准备sql语句
//发送sql语句
//处理数据