我是 php 和 html 脚本的新手,所以我想知道是否有人可以就如何设置我的页面结构给我一个建议。
我需要创建一个带有页眉和页脚的页面、一个左页菜单和一个显示网站内容的主要部分。
我想到了这样的框架集:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Frameset//IT” “http://www.w3.org/TR/html4/frameset.dtd”>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1?>
<title>Framesets</title>
</head>
<frameset rows=”20%,70%,10%”>
<frame src=header.php>
<frameset cols=”20%,80%”>
<frame src=menu.php>
<frame src=main.php>
</frameset>
<frame src=footer.php>
</frameset>
<noframes></noframes>
</html>
当有人单击 menu.php 部分上显示的链接时,只有 main.php 部分会被调用不同的选项(或者我可以调用不同的 php 页面,每种选择一个),但我不确定这是最好的解决方案,谁能给我一些建议?
(对不起我的英语不好!)