亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Backend management page homepage display

1, Create a new admin.php

, the code is as follows:

<frameset cols="10%,*" frameborder="1" framespacing="0" border="1">
    <frame src="left.php" >
    <frame src="main.php" name="main">
</frameset>

2. Create a new left.php

, the code is as follows:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>添加類別</title>
    <link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<ul class="type">
    <li><a href="typelist.php" target="main">類別管理</a></li>
    <li><a href="typeadd.php" target="main">添加分類</a></li>
</ul>
<ul class="type">
    <li><a href="newlist.php" target="main">新聞列表</a></li>
    <li><a href="newadd.php" target="main">添加新聞</a></li>
</ul>
</body>
</html>

3, Create a new main.php

The code is as follows:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>添加類別</title>
</head>
<body>
<h1>歡迎進(jìn)入后臺(tái)管理</h1>
</body>
</html>

4, the page is displayed as follows:

微信圖片_20180306182858.png

Continuing Learning
||
<?php echo "后臺(tái)管理頁(yè)面首頁(yè)顯示";
submitReset Code