Thursday 21 August 2014

Install php on Windows 7

Hello Friends,

Php is the scripting Language to create the dynamic web pages. So it required the Xampp server to run the Php scripts.

Today in market the latest version of Php is the php 5.4.27. so the installation steps is required as Follows:

1) Download the Apache xamp p from lhttps://www.apachefriends.org/download.html

2) Now run the Program xampp.exe

3) After installation complete open the Xampp_control panel from Xampp folder in c:\\ drive.

4) click on start button of Apache and Mysql.

5)now the xampp is ready to Run the php script

6) now the testing time is there

7) create helloworld.php in c:\xampp\htdocs folder
               
                <?php
                              echo "hello this is the phpscipt";
                     ?>

8)After Create the helloworld.php Go to the webbrowser and run the following link:
 
        http://localhost//helloworld.php  click this link to run your code..

This is the easy way to install the xampp on the Windows 7. For more Questions comment on the Post.

good day.