国产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 元素會創(chuàng)建包含另外一個文檔的內(nèi)聯(lián)框架(即行內(nèi)框架)。

通過<iframe>把不同的幾個頁面聯(lián)系起來,在同一個頁面展示。


前面我們設(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í)行期間包含并運(yùn)行指定文件。此行為和 include 語句類似,唯一區(qū)別是如果該文件中已經(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>
提交重置代碼
章節(jié)
筆記
提問
課件
反饋
捐贈

PHP開發(fā)之簡單圖書后臺管理系統(tǒng)教程