HOW
TO INSTALL PHP APPLICATIONS
By using WAMP SERVER, it is a web development
platform on windows by which we can create dynamic web application with
Apache2, PHP, and MySQL. WAMP server automatically installs
everything that you need during web application development so it can be used
for creating a local host especially for running test projects. Follow the
steps below to get started:
Step
1: Installing the Server Software
To set up the server we are using software
called WAMP server.
1. First
you need to download the WAMP server according to your system specifications (32
bit windows or 64 bit windows) from here.
2. Open
the .exe file (installation set up) .You will have a dialog window shown below.
3.
Select I Accept
the Agreement and then proceed with Next and complete
the installation.
Step 2: Setting Up the Server
1. After
Installation start WAMP server, on the bottom right corner of your screen you
can see the WAMP server logo as shown below. If it has a red color the services
isn’t start yet. Click on Start all Services.
2. Now
you get a green color on the logo, which shows that all the services has been
started.
Step 3: Saving Your PHP Scripts
1. Copy
the project and paste it to C:\wamp\www\. If you don’t know what the
link means, go to your local disk of the computer named “C”. Check you will see
wamp folder in it. Double click on the folder, then you will find www folder.
2. Here
my project folder name is sample. So I am copying folder ‘sample‘to
the www folder in WAMP installation directory.
Step 4: Running the PHP Script
Now open your browser. Type localhost/sample/
in the address bar to run the project [You can replace sample with your project
folder name].