我创建的索引文件看起来像这样
<php
include 'HTMLS/header.html';
include 'neworder.php';
include 'HTMLS/fotter.html';
?>
用户从neworder.html开始,然后从那里他可以选择移动到4个不同的页面。 我想在所有页面上保持页眉和页脚。 怎么做?
答案 0 :(得分:0)
只需在每个页面上包含页眉,页脚文件并更改内容文件
第1页
<php
include 'HTMLS/header.html';
include 'page1.php';
include 'HTMLS/fotter.html';
?>
2页
<php
include 'HTMLS/header.html';
include 'page2.php';
include 'HTMLS/fotter.html';
?>
...等
答案 1 :(得分:0)
如果您不想重新加载页面,则必须在PHP代码之外完成此操作,例如:通过使用Ajax请求。