我的网站遇到了一些不寻常的问题。我已经在我的头文件中插入了所有的 CSS 文件,并且我已经将它包含在每个 php 页面中,下面是一个 php 头文件,我将它包含在每个 php 页面中。但是标题的内容出现了,但样式根本没有出现。我已经检查了 Css 和包含文件的路径,但我仍然找不到问题。
让我在下面为您提供路径详细信息,如果我没有,您也许可以发现问题。标头位于 include 文件夹中,现在我要做的是从位于 admin 文件夹中的 admincontent.php 中调用标头。
标头中包含的 css 文件:localhost/bobs/css/cssfiles....
标头路径:localhost/bobs/includes/header.php
调用标头的文件:localhost/bobs/admin/admincontent.php
<?php require_once("function.php")?>
<!DOCTYPE html>
<html leng ="en">
<head>
<meta charset="utf-8" />
<title>ClickTravelStay</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/general.css" rel="stylesheet" type="text/css">
<link href="css/footer.css" rel="stylesheet" type="text/css">
<link href="css/form.css" rel="stylesheet" type="text/css">
<link href="css/admin.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="topHeader" class="Calign">
<a href ="index.php" id="logoFigure">
<img src="img/repetimg/logo.png" height="60"/ >
</a>
<div class="cBoth"><!-- clear Both--></div>
<ul id="nav">
<li><a href="index.php">HOME</a></li>
<li><a href="vication.php">VICATION</a></li>
<li><a href="carrental.php">CAR RENTAL</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="deals.php">DEALS</a></li>
<li><a href="contact.php">CONTACT</a></li>
<li><a href="about.php">ABOUT US</a></li>
</ul>
<ul id="help">
<li><a href="#">Book online or call: 080099999 Free from a landline</a></li>
</ul>
</div><!-- END OF topHeader-->
现在下面的代码就是调用头文件的admincontent.php的代码。
<?php require_once("../includes/header.php");?>
<?php require_once("../includes/connection.php");?>
<?php find_hotel_and_room_forNavig();?>
<div class="cBoth"></div>
<div id="sep"></div>
<div id="content" class="Calign">
<ul id="menu">
<?php
Navigation($selected_hot, $selected_rom);
?>
<li><a href="new_hotel.php">+ Add new Hotel >></a></li>
</ul>
<div id="subcontent">
<?php
echo $selected_hot['hotel_name']."</p>";
echo $selected_rom['room_type']."</p>";
?>
</div><!--end of subcontent-->
</div><!--end of content-->
</body>
</html>
我不明白的是,当我从 index.php 中调用标头时,说管理文件夹像这样(localhost/bobs/index.php)一切正常,但我无法从管理文件夹中引用标头。这是一个错误,因为从我看到的路径很好,除非还有其他需要设置的东西。请记住,我可以访问标题的内容,但样式根本不显示。html 像往常一样出现,但没有任何风格。非常感谢您的支持。