From a1ba4970dce2119b276429caa63a3856c913ba74 Mon Sep 17 00:00:00 2001 From: John Coggeshall Date: Sun, 1 Dec 2002 22:25:04 +0000 Subject: [PATCH] Added a reference to $_SESSION as also being a valid method (instead of just saying session_register()) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@106490 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/reference.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/reference/session/reference.xml b/reference/session/reference.xml index dca6c4492d..5e55e24f3c 100644 --- a/reference/session/reference.xml +++ b/reference/session/reference.xml @@ -1,5 +1,5 @@ - + Session handling functions Sessions @@ -48,9 +48,10 @@ Please note when working with sessions that a record of a session is not created until a variable has been registered using the - session_register function. This holds true - regardless of if a session has been started using the session_start - function. + session_register function or by adding a new + key to the $_SESSION superglobal array. This + holds true regardless of if a session has been started using the + session_start function.