diff --git a/features/cookies.xml b/features/cookies.xml index e7820a4dce..aa3b456043 100644 --- a/features/cookies.xml +++ b/features/cookies.xml @@ -1,13 +1,13 @@ - + Cookies - &php; transparently supports HTTP cookies. Cookies are a - mechanism for storing data in the remote browser and thus tracking or - identifying return users. You can set cookies using the - setcookie or setrawcookie + PHP transparently supports HTTP cookies. Cookies are a mechanism for + storing data in the remote browser and thus tracking or identifying return + users. You can set cookies using the setcookie or + setrawcookie function. Cookies are part of the HTTP header, so setcookie must be called before any output is sent to the browser. This is the same limitation that header @@ -18,7 +18,7 @@ Any cookies sent to you from the client will automatically be turned into a - &php; variable just like GET and POST + PHP variable just like GET and POST method data, depending on the register_globals and variables_order configuration variables. If you wish to assign multiple values to a single @@ -26,11 +26,11 @@ - In &php; 4.1.0 and later, the $_COOKIE auto-global array + In PHP 4.1.0 and later, the $_COOKIE auto-global array will always be set with any cookies sent from the client. - $HTTP_COOKIE_VARS is also set in earlier versions of &php; + $HTTP_COOKIE_VARS is also set in earlier versions of PHP when the track_vars configuration - variable is set. (This setting is always on since &php; 4.0.3.) + variable is set. (This setting is always on since PHP 4.0.3.)