我想知道爲什麼我的包含頁腳沒有顯示出來。沒有錯誤,但它不會顯示。頁腳文件沒有問題,因爲它在其他頁面上完美顯示。這是頁腳不顯示的頁面。任何幫助將不勝感激!包括頁腳不顯示在php
<?php
include 'init.php';
include 'template/header.php';
?>
<!-- include Cycle plugin -->
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.74.js"></script>
<!-- initialize the slideshow when the DOM is ready -->
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
</head>
<body>
include 'template/footer.php';
?>
年底是否錯誤報告被啓用? – Yasin
另外,考慮使用'require'而不是'include',因爲'require'會給你錯誤消息,但是'include'會自動失敗。 – Dai
如果你能提供一個錯誤日誌會更好。 – Srijan