I fixed my old problem, but now I have a new one :)
Here is my code http://wklej.org/id/1004299/
line 41: //header('location:test.php?pytanie='.$next); which doesn't work
I fixed my old problem, but now I have a new one :)
Here is my code http://wklej.org/id/1004299/
line 41: //header('location:test.php?pytanie='.$next); which doesn't work
No output should be above the headers. There is a range of reasons why this could be caused. examples.
<?php
header ("Location: test.php");
?>
this wont throw an error
<?php
echo "blabla";
header ("Location: test.php");
?>
OR
<strong> test</strong>
<?php
header ("Location: test.php");
?>
and in your case:
print_r($Array);
header ("Location: page.php");
Will throw an error.