gpt4 book ai didi

php 'include' 在 css 中给出错误

转载 作者:行者123 更新时间:2023-11-28 05:11:47 25 4
gpt4 key购买 nike

我正在用 php 开发一个网站。我有一个 navigation.php页,design.php页面和 footer.php页。这三个页面都有自己的内部 CSS。我将所有三页添加到 index.php 中使用包含命令。像这样:

index.php :

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

但由于 navigation.php 和 footer.php 中的某些 html 元素与无序列表相同 ulli但是他们的 CSS 在两个文件中都不同。但是当我打开 index.php页的一些部分 footer.php由于 navigation.php 中相同 html 元素的不同 CSS 而变得困惑.但是当我单独打开它们时没有问题。

页面是这样的:

navigation.php:

<style>
....css...
</style>
<body>
<ul>
<li>Home</li>
<li>Sign Up</li>
<li>Log In</li>
</ul>
</body>

footer.php

<style>
...css...
</style>
<body>
<ul>
<li>Privacy Policy</li>
<li>Report Bug</li>
</ul>
</body>

这只是示例代码。我该如何解决这个问题?

最佳答案

我不知道你的 design.php 里面有什么但是对于 index.php 试试这个

  <?php include_once( 'header.php');?>
<html lang="en">
<head>
<title>index.php</title>
</head>

<body>
..something....
</body>
<?php include_once('footer.php');?>
</html>

关于php 'include' 在 css 中给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39516455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com