html/php包含显示问题,一个取消另一个

html/php包含显示问题,一个取消另一个,php,html,include,Php,Html,Include,简言之: <div style="position: absolute; left: 47px; top: 39px; width: 503px; height: 256px; overflow: hidden;"> <div style="width: 503px; height: 256px; overflow: auto;"> <?php include 'get_opwire.php'; ?> </div> </div&g

简言之:

 <div style="position: absolute; left: 47px; top: 39px; width: 503px; height: 256px; overflow: hidden;">
<div style="width: 503px;  height:  256px;  overflow:  auto;">
<?php include 'get_opwire.php'; ?>
</div>
 </div>
 <div style="position: absolute; left: 30px; top: 533px; width: 100px; height: 26px;">
<div style="width: 100px;  height:  26px;">
<?php include 'usernameget.php'; ?>
</div>
 </div>

这将显示get_opwire.php,但不显示usernameget.php

当我换上它们的时候

 <div style="position: absolute; left: 30px; top: 533px; width: 100px; height: 26px;">
<div style="width: 100px;  height:  26px;">
<?php include 'usernameget.php'; ?>
</div>
 </div>
 <div style="position: absolute; left: 47px; top: 39px; width: 503px; height: 256px; overflow: hidden;">
<div style="width: 503px;  height:  256px;  overflow:  auto;">
<?php include 'get_opwire.php'; ?>
</div>
 </div>

这将显示usernameget.php,但不会显示get_opwire.php

有人能告诉我为什么这是/如何显示这两个吗? (该文件主要是html,并重命名为.php以解析上面的一些包含)
如果您想知道,嵌套的div来自xara9的html占位符系统。当我将它们分别清理到一个时,显示问题仍然存在。

是否在错误日志中抛出任何错误?包含文件中的某些内容可能会抵消另一个文件中的某些内容。get_opwire.php中引发的错误或异常?我收到的错误与头相关。我在这里写下了这个问题,但没有得到任何回应:用
if((include'file.php')==='OK')回显“OK”对后检查的正确性发表了评论。您的文件可能有问题。