Newsletter:

(Tutorial) Configuring PHP Development Environment in Windows


Tutorial : Configuring PHP Development Environment in Windows

This tutorial shows you two ways of configuring your PHP development environment on the Windows operating system. The first and most convenient way is to install and configure an AMP (Apache, MySQL, PHP) package. This tutorial shows you how to install the XAMPP package. The second way is to install and configure each component separately.

Required Software
To create, run, and debug your PHP projects you need the following software:

  • The NetBeans IDE for PHP. Downloads are available here.

  • A web server. Typically development and debugging is performed on a local web server, while the production environment is located on a remote web server. The current version enables using a local server. Using a remote server with FTP access will be supported in future versions. PHP support can be added to a number of web servers (IIS, Xitami, and so on), but most commonly Apache HTTP Server is used. Click here for information on how to install and configure Apache 2.2.

  • The PHP engine. The supported version is PHP5. Downloads are available here.

  • The PHP debugger. The NetBeans IDE for PHP allows you to use XDebug, but using a debugger is optional. The recommended version is XDebug 2.0 or higher as it is compatible with PHP5...

[Read More..]

Courtesy:- Netbeans.org