Why can\'t i use $POST before the headers
<?php
if ($GET[cookies] == \"empty\")
{
$SESSION[titel] = \"\";
}
else
{
$SESSION[titel] = $_POST[titel];
}
?>
In the body i have access to $_POST[titel]
When i change $_POST[titel]in the header in something like \"martijn\" the session variable is registered.
What i\'m i doing wrong?