シンプルな書籍背景管理システム...ログイン

シンプルな書籍背景管理システムのコンテンツページをPHPで開発

このページは、コード統合を通じて前の左ページと右ページを ly_center.php という名前の完全なファイルに結合したものです

前の章の左ページ設定名は ly_left.php ファイルです

右ページ名は 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">&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> タグを使用して、iframe 要素は別のドキュメントを含むインライン フレーム (つまり、インライン フレーム) を作成します。

<iframe> を介して複数の異なるページを接続し、同じページに表示します。


先ほど、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 ステートメントと似ていますが、唯一の違いは、ファイルがすでにインクルードされている場合、再度インクルードされないことです。このステートメントの名前が示すように、このステートメントは 1 回だけ含まれます。

次のセクション
<!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>
コースウェア