|
Posted by Jerry Stuckle on 02/16/07 01:29
comper wrote:
> I have problem:
> function setcookies does not work under Xp + IE
> i wrote
>
> setcookie('name', '$value', false, '/', 'false', 0);
>
>
> its all in php script and nothing, no cookies sent. But only on IE, i
> start page on Opera or Mozzilla and it works, only on IE no.
> Dont know anyone reason?
> Please help, thanks
>
The third parameter should be the timeout value, not true/false.
The fifth parameter should be a domain name or empty, not true/false.
See the documentation for setcookie().
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|