我创建了一个 index.php 作为带有内容框的模板。我还有 home.php、about.php 和 contact.php,它们只包含填充该内容框的内容。这是我用来将页面嵌入到该内容框中的代码:
<?php
if(!$_GET[page]){
include "home.php"; // Page to goto if nothing picked
} else {
include $_GET[page]."php"; // test.php?page=links would read links.php
}
?>
主页工作正常,但我不确定在主菜单中使用什么代码链接到其他页面。我很难得到答案,所以我想我可能用错误的术语搜索,这就是我在这里问的原因。
在网站的主菜单上,我在链接中使用什么代码以便它们获得 home.php、about.php 或 contact.php?