ここに、php の include タグを含むウェルカム ページがあります。
ようこそ.php
<html>
<head>
<title> Web Application</title>
<link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css">
<link rel="stylesheet" type="text/css" href="css/welcome_stylesheet.css">
<script type="text/javascript" src="extjs/ext-debug.js"></script>
<script type="text/javascript" src="welcome.js"></script>
</head>
<body id="welcome">
<div id="container">
<p id="welcome_page_h1">Welcome</p>
<div id="select_container">
<?php include("stuff.php"); ?>
</div>
</div>
</body>
</html>
そして、これが私がインクルード/表示しようとしているphpファイルです。
スタッフ.php:
<p> Well how y'all doin? </p>
<p> Well how y'all doin? </p>
<p> Well how y'all doin? </p>
<p> Well how y'all doin? </p>
ここですべてのアヒルが順調に進んでいるように感じますが、何も表示されません。何か案は?