... Danke!
aber mein Problem ist nicht das das Cookie nicht gesetzt wird sondern das ich es nicht schaffe den P3P Header (Dateschutzrichtlinie "ALL DSP COR NID CURa OUR STP PUR") mit zu senden!
Mit CGI::Simple; sollte dies ja funktioniern... Aber wie?
In PHP klappt dies z.B. so:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
header("P3P: CP=\"ALL DSP COR NID CURa OUR STP PUR\"");
$nocookies = false;
$reloaded = $_GET["ckset"];
$url = $_SERVER[PHP_SELF];
$querystring = $_SERVER[QUERY_STRING];
$querystring = str_replace("ckset=ok", "", $querystring);
setcookie("LEAD_standardlead", "putty", time()+(1000000));
if ($reloaded == "" and !isset($check_cookie)) {
echo "<META HTTP-EQUIV=\"refresh\" CONTENT=\"0;URL=http://www.naturalanimalcare.com" .
$_SERVER[PHP_SELF] . "?ckset=ok" . $querystring . "\">";
exit;
}
else {
if (!isset($check_cookie)) $nocookies = true;
}
?>