PHP Tutorials - Herong's Tutorial Examples - Version 3.10, by Dr. Herong Yang

Outdated: Downloading and Installing PHP 5.0.4 for Windows

This section provides a tutorial example on how to download and install the PHP engine 5.0.4 on a Windows system.

1. Go to http://www.php.net, and download PHP 5.0.4 binary for Windows. You will get a file called php-5.0.4-Win32.zip of 7488 KB.

2. Unzip php-5.0.4-Win32.zip to \php directory.

3. Open a command window, and try the following commands:

>\php\php -v
PHP 5.0.4 (cli) (built: Mar 31 2005 02:45:48)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v2.0.4-dev, Copyright (c) 1998-2004 Zend Technologies

>\php\php-cgi -v
PHP 5.0.4 (cgi-fcgi) (built: Mar 31 2005 02:45:43)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v2.0.4-dev, Copyright (c) 1998-2004 Zend Technologies

Cool, both Command Line Interface (CLI) and Common Gateway Interface (CGI) of PHP are working!

Last update: 2005.

Table of Contents

 About This PHP Tutorial Book

 Introduction and Installation of PHP 5.4.3

 PHP Script File Syntax

 PHP Data Types and Data Literals

 Variables, References, and Constants

 Expressions, Operations and Type Conversions

 Conditional Statements - "if" and "switch"

 Loop Statements - "while", "for", and "do ... while"

 Function Declaration, Arguments, and Return Values

 Arrays - Ordered Maps

 Configuring and Sending out Emails

 Retrieving Information from HTTP Requests

 Creating and Managing Sessions in PHP Scripts

 Sending and Receiving Cookies in PHP Scripts

 Controlling HTTP Response Header Lines in PHP Scripts

 MySQL Server Connection and Access Functions

 Functions to Manage Directories, Files and Images

 SOAP Extension Function and Calling Web Services

 SOAP Server Functions and Examples

 Localization Overview of Web Applications

 Using Non-ASCII Characters in HTML Documents

 Using Non-ASCII Characters as PHP Script String Literals

 Receiving Non-ASCII Characters from Input Forms

 "mbstring" Extension and Non-ASCII Encoding Management

 Managing Non-ASCII Character Strings with MySQL Servers

Outdated Tutorials

Outdated: Downloading and Installing PHP 5.0.4 for Windows

 Outdated: Downloading and Installing PHP 5.2.2 for Windows

 Outdated: Adding PHP to IIS as CGI

 References

 PDF Printing Version

Outdated: Downloading and Installing PHP 5.0.4 for Windows - Updated in 2012, by Dr. Herong Yang