On Sun, Nov 2, 2008 at 2:29 PM, till <[EMAIL PROTECTED]> wrote:
> On Sun, Nov 2, 2008 at 2:19 PM, dforum <[EMAIL PROTECTED]> wrote:
>> Hello,
>>
>> Tx, but I did not find Zend_Cookie.php
>>
>> Only, Zend_Http_Cookie exist, and I have not been able to use it. Finally I
>> use setcookie. Which work but not has indicated in the doc !!!
>> setcookie("visitor", "data",$expire,$_SERVER['HTTP_HOST'],null,null,true);
>> ==> work fine
>> setcookie("visitor", "datas",$expire,"/",$_SERVER['HTTP_HOST'],null,true);
>> ===> does'nt work, however the documentation indicate this format
>
> Works for me according to the docs? Just btw, you can't omitt one in
> the middle if for example you are looking to supply "httponly" in the
> end.
I should add, httponly is only available from 5.2.0. ;-) Maybe you are
on 5.1.6 or something and don't have all those parameters.
Till