本頁面是把前面的left頁面,right頁面,透過程式碼整合,組合成完整的名稱為ly_center.php檔案
前面章節的left頁面設定名稱為ly_left.php檔案
right頁面名稱為ly_right.php檔案
ly_center.php檔案程式碼:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>PHP图书管理系统内容页</title> <style type="text/css"> <!-- body { overflow:hidden; } --> </style> </head> <body> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="8" bgcolor="#353c44"> </td> <td width="147" valign="top"> <iframe height="100%" width="100%" border="0" frameborder="0" src="ly_left.php" name="leftFrame" id="leftFrame" title="leftFrame"> </iframe> </td> <td width="10" bgcolor="#add2da"> </td> <td valign="top"> <iframe height="100%" width="100%" border="0" frameborder="0" src="ly_right.php" name="rightFrame" id="rightFrame" title="rightFrame"> </iframe> </td> <td width="8" bgcolor="#353c44"> </td> </tr> </table> </body> </html>
使用<iframe>標籤,iframe 元素會建立包含另外一個文件的內嵌框架(即行內框架)。
透過<iframe>把不同的幾個頁面連結起來,在同一個頁面展示。
前面我們設定了top頁面,命名為ly_top.php,
透過在HTML程式碼中使用include_once引入ly_top.php檔案和ly_center.php文件。
組合成登入後跳轉的管理主頁。
管理中心頁面命名為:admin_index.php檔案。
<!DOCTYPE html> <html> <head> <title>管理中心</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> </head> <body style="margin: 0; padding: 0;"> <div> <?php include_once("ly_top.php");?> </div> <div style="height: 500px;"> <?php include_once("ly_center.php");?> </div> </body> </html>
include_once 語句在腳本執行期間包含並執行指定檔案。此行為和 include 語句類似,唯一差異是如果該文件中已經被包含過,則不會再次包含。如同此語句名字暗示的那樣,只會包含一次。
下一節