国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP開發(fā)簡單圖書後臺管理系統(tǒng)內(nèi)容頁

本頁面是把前面的left頁面,right頁面,透過程式碼整合,組合成完整的名稱為ly_center.php檔案

前面章節(jié)的left頁面設(shè)定名稱為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圖書管理系統(tǒng)內(nèi)容頁</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">&nbsp;</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">&nbsp;</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">&nbsp;</td>
  </tr>
</table>
</body>
</html>

使用<iframe>標(biāo)籤,iframe 元素會建立包含另外一個文件的內(nèi)嵌框架(即行內(nèi)框架)。

透過<iframe>把不同的幾個頁面連結(jié)起來,在同一個頁面展示。


前面我們設(shè)定了top頁面,命名為ly_top.php,

透過在HTML程式碼中使用include_once引入ly_top.php檔案和ly_center.php文件。

組合成登入後跳轉(zhuǎn)的管理主頁。

管理中心頁面命名為: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?語句在腳本執(zhí)行期間包含並執(zhí)行指定檔案。此行為和?include?語句類似,唯一差異是如果該文件中已經(jīng)被包含過,則不會再次包含。如同此語句名字暗示的那樣,只會包含一次。

繼續(xù)學(xué)習(xí)
||
<!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>