간단한 도서 배경 관리 시스템 콘텐츠 페이지 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"> </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>을 통해 여러 다른 페이지를 연결하고 같은 페이지에 표시하세요.
앞서 우리는 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 문과 유사합니다. 유일한 차이점은 파일이 이미 포함된 경우 다시 포함되지 않는다는 것입니다. 이 명령문의 이름에서 알 수 있듯이 한 번만 포함됩니다.