在PHP動態網站設計中,頁面布局是一個關鍵步驟,它涉及到如何在用戶界面上有效地組織和展示內容。以下是一個基本的頁面布局流程,幫助你設計一個清晰、易于維護的PHP動態網站:
<header>
, <main>
, <aside>
, <footer>
等標簽來定義頁面結構。以下是一個簡單的PHP動態網站頁面布局示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP動態網站</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 10px 20px;
text-align: center;
}
nav {
display: flex;
justify-content: space-around;
background-color: #555;
}
nav a {
color: white;
text-decoration: none;
padding: 10px;
}
nav a:hover {
background-color: #777;
}
main {
display: flex;
justify-content: space-between;
padding: 20px;
}
.sidebar {
width: 20%;
background-color: #f4f4f4;
padding: 10px;
}
.content {
width: 75%;
padding: 10px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 20px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>PHP動態網站</h1>
</header>
<nav>
<a href="#">首頁</a>
<a href="#">關于我們</a>
<a href="#">聯系我們</a>
</nav>
<main>
<div class="sidebar">
<h2>側邊欄</h2>
<ul>
<li><a href="#">鏈接1</a></li>
<li><a href="#">鏈接2</a></li>
</ul>
</div>
<div class="content">
<h2>主要內容</h2>
<?php
// 動態生成文章內容
$articles = [
['title' => '文章1', 'content' => '這是文章1的內容。'],
['title' => '文章2', 'content' => '這是文章2的內容。']
];
foreach ($articles as $article) {
echo "<h3>" . $article['title'] . "</h3>";
echo "<p>" . $article['content'] . "</p>";
}
?>
</div>
</main>
<footer>
<p>版權所有 © 2023 PHP動態網站</p>
</footer>
</body>
</html>
通過以上步驟,你可以設計出一個結構清晰、功能齊全、用戶體驗良好的PHP動態網站。