我修复了我的旧问题,但现在我有一个新问题:)
这是我的代码 http://wklej.org/id/1004299/
第41行://header('location:test.php?pytanie='.$next);这不起作用
答案 0 :(得分:0)
标题上方不应有输出。造成这种情况的原因有很多。实例
<?php
header ("Location: test.php");
?>
这不会引发错误
<?php
echo "blabla";
header ("Location: test.php");
?>
OR
<strong> test</strong>
<?php
header ("Location: test.php");
?>
,在你的情况下:
print_r($Array);
header ("Location: page.php");
会抛出错误。