我被要求在網站上做一些編輯,我做的一件事是使用<?php include "navbar.php" ?>
「navbar.php」是我用他們的導航欄創建的文件。它在將導航欄複製到.php文件並將其替換爲包含在每個頁面上時無縫工作。包括php不工作爲我的navbar.php
現在我嘗試使用我自己的網站並創建一個navbar.php並使用include,但我無法弄清楚它爲什麼不起作用。去過wschools.com和周圍堆棧溢出,沒有解決方案,我已經能夠嘗試工作。 這裏是navbar.php
<!DOCTYPE html>
<html>
<body>
<p> hello </p>`
</body>
</html>
這裏是我試圖使頁面的代碼。
<!DOCTYPE html>
<html>
<head>
<link rel= "stylesheet" type= "text/css" href= "RRstyle.css" />`
<h1> R&R Manufacturing </h1>
</head>
<body>
<div id="main">
<?php include '/RRnavbar.php';?>
<br />
<p> This is more of the body </p>
<br />
<p> I needed more text </p>
<br />
<p> is this enough? </p>
</div>
<body>
我一直在澆注這個小時,無法想象它讓我的導航欄顯示任何東西。
如果你在Linux上運行的Web服務器,那麼這將是區分大小寫的。含義'RRnavbar.php'將與'rrnavbar.php'不同。 – 2014-08-29 22:04:07