每日总结

1.php大作业

管理员界面

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>管理员界面</title>
<style>

.list{
100px;
height: 98%;
position:absolute;
background: lightblue;
text-align: left;
margin: 0 auto;

}
.maintitle
{
font-size:20px;
font-weight:bold;
}
.subtitle
{
font-size:16px;
font-weight:bold;
text-align:center;
font-family: 微软雅黑;
}
a:link {color: gray;} /* 未访问的链接 */
a:visited {color: gray} /* 已访问的链接 */
a:hover {color: gray} /* 当有鼠标悬停在链接上 */
a:active {color: gray} /* 被选择的链接 */
a{
text-decoration : none;
font-size: 15px;
font-family: 幼圆;
}
* {
margin: 0;
padding: 0;
}

</style>
</head>
<body>
<table>
<tr>
<td class="list" rowspan="0">
<span class="maintitle">管理员菜单</span>
<br>
<br>
<span class="subtitle">订单管理</span>
<br>
<a href="showBill.php" target="scrshow">修改订单状态</a>
<br/>
<br>
<span class="subtitle">商品分类管理</span>
<br>
<a href="addType.php" target="scrshow">增加分类</a>
<br/>
<a href="ManageType.php" target="scrshow">管理分类</a>
<br>
<br>
<span class="subtitle">商品管理</span>
<br>
<a href="addGood.php" target="scrshow">添加商品</a>
<br/>
<a href="ManageGood.php" target="scrshow">管理商品</a>
<br/>


</td>
<td rowspan="0">
<iframe src="addGood.php" frameborder="0" name="scrshow" height="99%" width="94%" scrolling="auto" style="position: absolute;margin-left:100px;"></iframe>
</td>
</tr>
</table>
</body>
</html>
原文地址:https://www.cnblogs.com/chenghaixiang/p/14914437.html