以下html不会从包含的php文件中产生任何响应。
<!DOCTYPE html>
<html>
<body>
Here is some text. <br>
<?php include 'hello.php'; ?>
</body>
</html>
hello.php文件包含无处不在的<?php echo "Hello world!"; ?>
其他信息:
答案 0 :(得分:1)
在你的html页面的末尾或第一页添加此内容,看看有什么破坏:
<?php error_reporting(-1); ?>
这适用于您的包含:
<?php include("file.php"); ?>