使用其他文件夹中的包含

时间:2018-08-29 08:47:40

标签: php web

我有一个使用php的项目;我有一个包含文件夹,其中有我的header.php和footer.php 我的样式表和其他样式表链接在header.php的head标签中。

我还有一个名为计算器的文件夹,现在我在计算器文件夹的索引文件中包含header.php和footer.php,它可以工作,但css无效

这是计算器索引文件中的代码

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

    <form action="" method="post" enctype="multipart/form-data">
        <div class="form-group">
            <label for="exampleFormControlInput1">Name of Share</label>
            <input type="text" class="form-control" id="exampleFormControlInput1">
        </div>
        <div class="form-group">
            <label for="exampleFormControlInput1">Number of Shares</label>
            <input type="text" class="form-control" id="exampleFormControlInput1">
        </div>
        <div class="form-group">
            <label for="exampleFormControlInput1">Purchase Price</label>
            <input type="text" class="form-control" id="exampleFormControlInput1">
        </div>
        <button type="submit" class="btn btn-primary">Submit</button>
    </form>


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

请告知

1 个答案:

答案 0 :(得分:0)

以我的经验,最好的方式包括这样的js和CSS文件。

例如: 假设CSS位于资产内部,资产的路径就像localhost\PROJECT\asset\css\style.css

建议将全局变量创建为:

$path = 'http://localhost/PROJECT/'; 

在您设置样式表的头文件中,就像这样:

<link rel="stylesheet" href="<?php echo  $path; ?>asset/css/style.css" >