所以我在这里有一个欢迎页面,其中包含一个 php 包含标记。
欢迎.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>
我觉得我所有的鸭子都在这里井井有条,但什么也没显示。有任何想法吗?