復制代碼 代碼如下:
<frame src="top.html" scrolling="no">
<frameset cols="180,*" frameborder="NO" framespacing="0">
<frame src="menu.html" noresize scrolling="yes">
<frame src="main.html" noresize scrolling="yes">
</frameset>
復制代碼 代碼如下:
//top.php:
$smarty->assign('user', $names );
smarty_Output('top.php')
//menu.php:
$arr=array();
$arr=GetMenu();
$smarty->assign('menu', $arr);
smarty_Output('menu.php');
//main.php
$smarty->assign('serverInfo', $serverInfoArr);
smarty_Output('main.php');
//顯示iframe頁
smarty_Output('iframe.html')
復制代碼 代碼如下:
<frame src="top.php" scrolling="no">
<frameset cols="180,*" frameborder="NO" framespacing="0">
<frame src="menu.php" noresize scrolling="yes">
<frame src="main.php" noresize scrolling="yes">
</frameset>
復制代碼 代碼如下:
/*此處放共用處理代碼*/
switch($src)
{
case "top":
/*此處放處理代碼*/
smarty_Output('top.html');
break;
case "menu":
/*此處放處理代碼*/
smarty_Output('menu.html');
break;
case "main":
/*此處放處理代碼*/
smarty_Output('main.html');
break;
default:
break;
}
復制代碼 代碼如下:
<frame src="iframe.php?src=top" scrolling="no">
<frameset cols="180,*" frameborder="NO" framespacing="0">
<frame src="iframe.php?src=menu" noresize scrolling="yes">
<frame src="iframe.php?src=main" noresize scrolling="yes">
</frameset>
新聞熱點
疑難解答