php SetCookie IE Firefox'ta çalışır, ancak

0 Cevap php

Ben iki php scriptleri

dnm.php

<?php
 header("location: test2.php");
 setcookie("test", "8kFL4IZfjkBmV7AC", time()+60*60, '/');
 exit;
?>

test2.php

<?php
 var_dump($_COOKIE);
?>

I then point my browser to dnm.php which redirects to test2.php. I then get the following results.

Firefox, i şu olsun:

array
  'test' => string '8kFL4IZfjkBmV7AC' (length=16)

Ancak IE6, ben şu olsun:

array
  'PHPSESSID' => string 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' (length=32)

not: ben bilerek yukarıda PHPSESSID dışarı x'D var!

I yanlış gidiyorum ve neden IE6 benim çerez görünmüyor nerede acaba.

Şimdiden teşekkürler

0 Cevap