如何根据导航栏包含php个文件

How to include php file based on navigation bar

大家好,我想知道我应该在我的 href 中放些什么来包含我的 class 文件夹中的文件。

我的站点文件夹结构

folder-class-head.php
            -home.php
            -setting.php
            -footer.php
      -index.php

这是我的 head.php 样子。我应该在 href 中填写什么以便将文件包含在我的 class 文件夹中?

<html>
 <head></head>
 <body>
   <a href="">Home</a> <a href="">Setting</a>

我的 index.php 是执行 if 语句的正确方法吗?

<?
include "class/head.php";
    <--body start-->
   if (do= home.php){
include "class/home.php";
}

if (do= setting.php){

    include "class/setting.php";
}
<--body end -->
<--footer area-->
include "class/footer.php";
?>

你可以在href里加上like,&page=home,看看是不是首页,

if($_GET['page']=='home')
{
include "class/home.php";
}

my index.php is that the right way to do if statement?

没有。完全没有。

在php、if/elseif/else中,那些是条件语句,控制结构。

do/while表示循环。

使用 PHP 加载适当脚本的一种非常常见和常用的方法是使用 GET SUPERGLOBAL 变量。

PHP do/while
PHP if statement
PHP $_GET