嘿家伙我想知道我应该在我的href中添加什么来包含我的类文件夹中的文件。
我的网站文件夹结构
folder-class-head.php
-home.php
-setting.php
-footer.php
-index.php
这是我的head.php看起来像。我应该在href中填写什么才能将文件包含在我的类文件夹中?
<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";
?>
答案 0 :(得分:0)
你可以在href中添加like,&amp; page = home,并检查它是否是主页,
if($_GET['page']=='home')
{
include "class/home.php";
}
答案 1 :(得分:0)
我的index.php是if语句的正确方法吗?
没有。完全没有。
在php if/elseif/else
中,这些是条件语句,控制结构。
do/while
表示循环。
使用PHP加载适当的脚本的一种非常常见和通常的方法是使用GET SUPERGLOBAL变量。