From 470c38115d56d1b2c497e399e13055010aa9fa15 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Thu, 26 Sep 2002 18:30:29 +0000 Subject: [PATCH] Minor changes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@97035 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/tutorial.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/chapters/tutorial.xml b/chapters/tutorial.xml index c139186ca8..d6cd931bfb 100644 --- a/chapters/tutorial.xml +++ b/chapters/tutorial.xml @@ -1,5 +1,5 @@ - + A simple tutorial @@ -106,8 +106,7 @@ There are many text editors and Integrated Development Environments (IDEs) that you can use to create, edit and manage PHP files. A partial list of - these tools is maintained at PHP Editor's + these tools is maintained at PHP Editor's List. If you wish to recommend an editor, please visit the above page and ask the page maintainer to add the editor to the list. @@ -166,13 +165,14 @@ $_SERVER is a special reserved PHP variable that contains all web server information. - It's known as an Autoglobal. See the related manual page on + It's known as an Autoglobal (or Superglobal). See the related manual page on Autoglobals - (also known as Superglobals) for more information. These special - variables were introduced in PHP 4.1.0. Before this time, we used + for more information. These special variables were introduced in PHP + 4.1.0. Before this time, we used the older $HTTP_*_VARS arrays instead, such as $HTTP_SERVER_VARS. Although deprecated, - these older variables still exist. + these older variables still exist. (See also the note on + old code.) @@ -410,8 +410,8 @@ You are 22 years old. (which need to be indicated as global when used inside a function or method). The following autoglobal arrays - were introduced in PHP 4.1.0. They are: - $_GET, $_POST, + were introduced in PHP 4.1.0. + They are: $_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_REQUEST, and $_SESSION. The older $HTTP_*_VARS