Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我解决了我的旧问题,但现在我有了一个新问题:)
这是我的代码 http://wklej.org/id/1004299/
第 41 行://header('location:test.php?pytanie='.$next); 这是行不通的
标题上方不应有任何输出。造成这种情况的原因有很多。例子。
<?php header ("Location: test.php"); ?>
这不会引发错误
<?php echo "blabla"; header ("Location: test.php"); ?>
或者
<strong> test</strong> <?php header ("Location: test.php"); ?>
在你的情况下:
print_r($Array); header ("Location: page.php");
会抛出错误。