etting Up Your PHP Development Environment

thumb_up 1  ·  sell PHP development environment setup, Configuring PHP environment, PHP environment installation guide

 

 

In order to develop and run PHP Web pages three vital components need to be installed on your computer system.

  • Web Server − PHP will work with virtually all Web Server software, including Microsoft's Internet Information Server (IIS) but then most often used is freely available Apache Server. Download Apache for free here − https://httpd.apache.org/download.cgi

  • Database − PHP will work with virtually all database software, including Oracle and Sybase but most commonly used is freely available MySQL database. Download MySQL for free here − https://www.mysql.com/downloads/

  • PHP Parser − In order to process PHP script instructions a parser must be installed to generate HTML output that can be sent to the Web Browser. This tutorial will guide you how to install PHP parser on your computer.

PHP Parser Installation

Before you proceed it is important to make sure that you have proper environment setup on your machine to develop your web programs using PHP.

Type the following address into your browser's address box.

http://127.0.0.1/info.php

If this displays a page showing your PHP installation related information then it means you have PHP and Webserver installed properly. Otherwise you have to follow given procedure to install PHP on your computer.

This section will guide you to install and configure PHP over the following four platforms −

Apache Configuration

If you are using Apache as a Web Server then this section will guide you to edit Apache Configuration Files.

Just Check it here − PHP Configuration in Apache Server

PHP.INI File Configuration

The PHP configuration file, php.ini, is the final and most immediate way to affect PHP's functionality.

Just Check it here − PHP.INI File Configuration

Windows IIS Configuration

To configure IIS on your Windows machine you can refer your IIS Reference Manual shipped along with IIS.

 

The End! should you have any inquiries, we encourage you to reach out to the Vercaa Support Center without hesitation.

Was this answer helpful?

Related Articles

description

An Overview of PHP Syntax

    This chapter will give you an idea of very basic syntax of PHP and very important to make your PHP foundation strong. Escaping to…

arrow_forward
description

Exploring PHP Variable Types

    The main way to store information in the middle of a PHP program is by using a variable. Here are the most important things to know…

arrow_forward
description

Understanding PHP Constant Types

    A constant is a name or an identifier for a simple value. A constant value cannot change during the execution of the script. By…

arrow_forward
description

Exploring PHP Operator Types

    What is Operator? Simple answer can be given using expression 4 + 5 is equal to 9. Here 4 and 5 are called operands and + is called…

arrow_forward
description

Exploring PHP Loop Types

    Loops in PHP are used to execute the same block of code a specified number of times. PHP supports following four loop types. for…

arrow_forward
arrow_back « Back