Articles in the PHP Category

PHP Chapter 1 – Variables and Operators
By Keshav Shetty
Posted in PHP on 6 November 2009
Stats: 418 views and No Comments

In web development using PHP, it is normal practice to include php codes into html using special tag “<?php” e.g: <html> <head></head> <body> <?php echo ‘Wlecome to php’; ?> </body> </html> When this file is requested by the browser an web aware server recognizes “<?php” tag and understands that it needs to be interpreted by [...]

Read the full story »
PHP Index
By Keshav Shetty
Posted in PHP on 6 November 2009
Stats: 421 views and No Comments

Introduction to php Install and setup php development environment (for MS Windows) Chapter 1

Read the full story »
PHP introduction
By Keshav Shetty
Posted in PHP on 6 November 2009
Stats: 536 views and No Comments

The PHP Hypertext Preprocessor. The initial version PHP was written by Rasmus Lerdorf in 1995 and known as PHP/FI i.e Personal Home Page / Forms Interpreter. Over the period of 15 years PHP evolved into major and great language for web development, latest 5.0+ version supports object model. Today it is preferred language for data-driven [...]

Read the full story »
PHP installation and setup
By Keshav Shetty
Posted in PHP on 6 November 2009
Stats: 127 views and 2 Comments

In order to start development with php you need three components Database (I prefer Mysql) Web server (I prefer Apache) PHP interpreter I assume you are using MS Windows for your development. First download and install MySql from MySql 5.0 downloads Next download and install Apache from Apache 2.2 downloads Next download and unzip php [...]

Read the full story »