Monday, July 15, 2013

Installing PHP

Having installed a web server, the next order of business is to install PHP to our system. This post includes step by step instructions on how to install PHP on a Windows 7 system. If you haven't installed a web server yet, then see the previous post.

Installing IIS 7

Unlike HTML, web pages written in PHP can't be displayed by web browsers directly; they have to pass through what is called a web server and be interpreted. The first step of writing PHP programs is to install and configure a web server.

Introduction

In the past, all one needed to know in order to develop web pages was HTML; but we are long past that stage. Now, almost all web sites with notable functionality has some sort of dynamic content. There are many choices for creating dynamic web pages such as ASP, JPS and PHP. After looking into JSP for some time, I decided for various reasons that starting over with PHP will be better suited for my needs. This blog will be where I keep everything that I know about the PHP language and related applications.

My current level of knowledge about PHP is close to zero but I am not a complete beginner about programming. I know how to program in Java (which is the reason I looked into JSP first) and I have fair knowledge about HTML, CSS and computers in general. I plan to use the Symfony2 framework and NetBeans IDE in this venture. In my next posts, I will write about installation of PHP, IIS and NetBeans for Windows 7. Instructions for Linux (Ubuntu) will follow shortly after.

Feel free to leave a comment if you have any questions or suggestions. Happy programming!