ID:               17158
 Updated by:       [EMAIL PROTECTED]
-Summary:          I don't find php_ldap.dll extension in the 4.2.0
                   distribution
 Reported By:      [EMAIL PROTECTED]
-Status:           Bogus
+Status:           Closed
 Bug Type:         Feature/Change Request
-Operating System: W2000
+Operating System: n/a
 PHP Version:      4.2.0
 New Comment:

Javascript cookies are client-side which is an entirely different
thing. If you want to get around header() and setcookie() limitations,
take a look at http://www.php.net/manual/en/ref.outcontrol.php


Previous Comments:
------------------------------------------------------------------------

[2002-05-11 16:36:26] [EMAIL PROTECTED]

this is because JS has dircet access to the browser., whereas PHP has
not. it is a limitation of HTTP in general and cookies in particular.
so the docs are right. no bug -> bogus

------------------------------------------------------------------------

[2002-05-11 16:30:26] [EMAIL PROTECTED]

setcookie() states "cookies must be sent before any other headers are
sent (this is a restriction of cookies, not PHP).

http://www.php.net/manual/en/function.setcookie.php

I would like to suggest this is a restriction of PHP, not cookies.

I can send and read cookies right in the middle of my HTML
when I use Javascript:
http://www.collegeSherbrooke.qc.ca/languesmodernes/cookie.htm

<script>

setCookie("TestCookie","first time",expdate);
var DisplayData = getCookie("TestCookie");
document.write(DisplayData);

document.write("<br>");

setCookie("TestCookie","second time",expdate);
var DisplayData = getCookie("TestCookie");
document.write(DisplayData);

</script>

When can we expect a feature change on setcookie() ?

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=17158&edit=1

Reply via email to