frameset.tpl.php

来自「一个文章管理系统,很不错的,php语言开发,运行平台:windows和linux」· PHP 代码 · 共 30 行

PHP
30
字号
<?php
if( !defined('ISELOOK') ){
	header('HTTP/1.0 404 Not Found');
	exit;
}
?><!--<?php
print <<<EOT
--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=<?=$charset?>">
<title>{$settings['s_name']}-{$lang['page_title']}</title>
</head>
<frameset rows="33,*" border=0 frameborder="YES" name="top_frame"> 
	<frame src="index.php?action=index_top" noresize frameborder="NO" name="ads" scrolling="NO"  marginwidth="0" marginheight="0">
	<frameset rows="675" cols="180,*" border="0" name="bottom_frame"> 
		<frame src="index.php?action=index_left" noresize name="list" marginwidth="0" marginheight="0">
		<frame src="index.php?action=index_main" name="main" marginwidth="0" marginheight="0">
	</frameset>
</frameset>
<noframes>
	<body>
	<br><br>
	<div align="center">你的浏览器不支持框架。</div>
	</body>
</noframes>
</html>
<!--
EOT;
?>-->

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?