kein cookie nach weiterleitung

heikomi

Erfahrenes Mitglied
Guten nabend miteinander,

ich hab das Problem, das JavaScript das Cookie nicht setzt, obwohl ich diese zulasse.

Hier der gekürzte HTML Quelltext:

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
  <head>
    <meta http-equiv="content-type" content="application/xhtml+xml;charset=utf-8"/>
    <meta http-equiv="Content-Script-Type" content="text/javascript"/>
    <meta name="description" content=""/>
    <meta name="keywords" content=""/>
    <meta name="author" content=""/>
    <meta name="generator" content=""/>
    <title>Lok L...</title>

    <script type = "text/javascript">
      function CokieTest()
      {
        screenB1 = screen.width;
        screenH1 = screen.height;
        screenB2 = screen.availwidth;
        screenH2 = screen.availheight;
        screenFT = document.screen.colorDepth;
        screenPT = document.screen.pixelDepth;
        browserN = escape(navigator.appName);
        browserV = escape(navigator.appVersion);
        browserA = escape(navigator.userAgent);
        browserwerte = screenB1 +'|'+ screenH1 +'|'+ screenB2 +'|'+ screenH2 +'|'+ screenFT +'|'+  screenPT +'|'+ browserN +'|'+ browserV +'|'+ browserA;
        var a = new Date();
        a = new Date(a.getTime() + 1000*60*60*24);
        document.cookie = 'browserwerte='+browserwerte+'; expires='+a.toGMTString()+';';
        window.location.href = "start.html";
      }
    </script>

  </head>

  <body onLoad="CokieTest()">
    <?php header('Location: start.html'); ?>  
  </body>
</html>

Er ruft zwar start.html auf und die folge Datei (*.PHP) aber es ist kein Cookie da?

Kann mir das mal jemand erklären?

LG Heiko
 

Neue Beiträge

Zurück