我想在同一页面加载另一个页面,具有当前页面的所有功能。 例如,我的页面有"导航栏" "面板" ,现在我想要的是下一页应该加载,但只有内容得到改变。不是整个页面。
答案 0 :(得分:0)
你应该把你的页面视为......(1)标题,(2)主要部分,(3)页脚
并使用php include file examble>>>包含它们include 'filename';
所以你有相同的(页眉页面)和(页脚页面)
但只有“内容”页面正在更改
<?php
include 'header.php';
//only change this for the other pages
include 'main.php';
include 'footer';
?>