我一直在编写一些代码并在 localhost 上对其进行了测试,一切正常,但是当我将它上传到我的服务器时,它无法超出我的 php 标签。也没有显示错误。我检查了两个 php 版本,在 localhost 上我运行版本 5.4.7,在服务器上运行版本 5.3.21。也许这是造成问题的原因?我应该在 phpinfo() 中寻找什么吗?我的代码中是否缺少某些内容?这是代码:
<!DOCTYPE html>
<?php phpinfo(); ?>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<meta charset="utf-8">
<style>
body { background:black;}
.toggle { display:none; }
p {
width:570px;
text-align:justify;
color:#686868;
font-family:Georgia, serif;
}
h2 { color:black; }
button { background:#686868;
border:none;
font-family:Georgia, serif;
width:570px;
}
</style>
</head>
<body>
<?php
include('sql.php');
$i = 0;
while($i < count($rows)) {
echo "
<div>
<button class='trigger'>
<table width='100%'>
<tr>
<td width='20%'><img src='http://localhost/app-side/Icons/bar_icon.png' />
</td>
<td width='80%'><h2>{$rows[$i]['titel']} </h2></td>
</tr>
</table>
</button>
<div class='toggle'>
<p>
{$rows[$i]['info']}
</p>
</div>
</div>";
$i++;
}?>
</body>
<script>
$('.trigger').click(function() {
$(this).siblings('.toggle').slideToggle('fast');
});
</script>
</html>
当我运行它时,它会显示黑色背景(正如它所假设的那样),但我的 php 起始标签之外的所有内容都会被切断。我还尝试强制我的 while 循环循环 10 次,并且还删除了它从我的数据库中获取数据的部分,以查看它是否是与 mysql 相关的问题。我可以断定它不是。