PHP開(kāi)發(fā)企業(yè)網(wǎng)站教程之后臺(tái)框架
下面來(lái)看一張截圖,了解框架的作用
如上圖所示
上面的部分我們成為top 左邊的為left 右邊的為right
main頁(yè)面是包含我們這3個(gè)頁(yè)面的
下面我們來(lái)看一下
main頁(yè)面的代碼
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
</head>
<frameset rows="20%,*">
<frame src="top.php" name="top" noresize></frame>
<frameset cols="15%,*">
<frame src="left.php" name="left" noresize></frame>
<frame src="right.php" name="right"></frame>
</frameset>
</frameset>
</html>
top頁(yè)面代碼:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<style type="text/css">
body{margin-top:50px;text-align:center;}
a{text-decoration:none;float:right;margin-right:15px;color:red;}
</style>
</head>
<body>
<h1>合肥領(lǐng)航環(huán)保科技公司后臺(tái)管理系統(tǒng)</h1>
</body>
</html>
left頁(yè)面代碼
<!DOCTYPE html>
<html>
<head>
<title>lift</title>
<meta charset="utf-8">
</head>
<style type="text/css">
.left{margin-top:25px;margin-left:30px;}
a{color:red;text-decoration:none;}
a:hover{color:green;}
</style>
<body>
<div class="left">
<a href="user.php" target="right">管理員管理</a></br></br>
<a href="about.php" target="right">關(guān)于我們</a></br></br>
<a href="news.php" target="right">新聞資訊</a></br></br>
<a href="product.php" target="right">產(chǎn)品管理</a></br></br>
<a href="contact.php" target="right">聯(lián)系我們</a></br></br>
</div>
</body>
</html>
right 頁(yè)面就是我們點(diǎn)擊左側(cè)出現(xiàn)的頁(yè)面,比如管理產(chǎn)品頁(yè)面或者管理管理員頁(yè)面
注: 本課程文件的以 .php 為后綴名