如何在Bootstrap中包含文件* .php?

时间:2013-02-23 22:10:52

标签: php twitter-bootstrap

我在文件夹中有一个标题设计模板:/template/header.php。在header.php文件中我使用Bootstrap。

然后我在文件夹中创建了另一个文件:/karyawan/karyawan_form.php

在我的karyawan_form.php INCLUDE文件header.php文件中

所以karyawan_form.php脚本文件是这样的:

<?php
include_once '../template/header.php';
?>
<div class="container">
Welcome to my website!
</div>

然后它不会在localhost上运行链接:

  

localhost / belajarajax / karyawan / karyawan_form.php

但为什么院子看起来像普通的PHP视图;喜欢没有Bootstrap?

3 个答案:

答案 0 :(得分:0)

应该是:

include_once '../../template/header.php';

我认为

答案 1 :(得分:0)

使用

<?php
include_once dirname(__FILE__).'/template/header.php';
?>

答案 2 :(得分:0)

样式表和脚本可能不会在包含页面上加载。更改header.php中的链接。尝试更改header.php中的链接引用,例如:

/template/src/bootstrap.min.js
/template/src/bootstrap.min.css