我不能包含我的标题

时间:2016-10-08 13:25:29

标签: php html header include require



#main {
  height: calc(100vw - 100px);
  padding-left: 65px;
  padding-right: 65px;
}




您好,

出于某种原因,我的标题不起作用。

我的项目包含这些目录

根 --index.php - /登录 ----的index.php - /包括 ----了header.html ----的config.inc.php

我的index.php正确显示了标题并完美地继承了配置文件,但登录文件夹中的index.php并不包含标题。 它确实包括配置(要求)。

我尝试了几件事情,例如$ _server [' DOCUMENT_ROOT']和其他内容,但我无法显示该标题。

3 个答案:

答案 0 :(得分:0)

嘿试着在前锋斜线前使用一段时间,也可以不用时间或正斜线试试

<?php

require('./includes/config.inc.php');
include ('./includes/header.html');
$page_name = NAME;

$page_title = 'Home';
?>

<div  style="background-color:green;" class="container">
    <div class="section">
        <div class="row">
            <div class="col s6">
                <h3>Welkom</h3>
            </div>
            <div class="col s6">
                <h3>Welcome</h3>
            </div>
        </div>
    </div>
</div>

<?php include ('includes/footer.html');
?>

答案 1 :(得分:0)

只需将您的文件* .html重命名为* .php

像header.php,footer.php

答案 2 :(得分:0)

< ?php include 'header.php'; ?>

ALL YOUR CONTENT HERE

< ?php include 'footer.php'; ?>

请检查此链接: - https://css-tricks.com/forums/topic/how-to-include-php-headers-and-footers-on-html-site/