PHP
PHP language is one of the easiest web programming language available today. Running on Linux server it is not really a big problem for beginners to learn them. With the use of software such as Wampserver the users can now host PHP on Windows platform which they are familiar with. PHP works pretty similar to C language in term of structure with slight different. Instead of having to declare the type of variable PHP does not require the variable to be declared before hand.
PHP language is one of the easiest web programming language available today. Running on Linux server it is not really a big problem for beginners to learn them. With the use of software such as Wampserver the users can now host PHP on Windows platform which they are familiar with. PHP works pretty similar to C language in term of structure with slight different. Instead of having to declare the type of variable PHP does not require the variable to be declared before hand.
example:
$a=1; //$a now holds value 1 and it will handle as an integer variable.
$a="hello world"; //$a now works as a string variable
It will be almost useless to use PHP without any database. The most common database to be implemented with PHP is MySQL. It allows user to enter data as well as delete and update.
The famous Friendster and Facebook were built using PHP !!!