Saturday, December 1, 2007

Introduction to PHP ?

What is PHP?
  • PHP stands for PHP: Hypertext Preprocessor
    PHP is a server-side scripting language
  • PHP scripts are executed on the server
    PHP supports many databases (MySQL, Informix, Oracle, PostgreSQL.)

Simple Program

//Single Line Comment

//print the value using echo ;

echo "PHP";

/* Multi Line Comment

example.php PHP file saves with (.PHP)

*/

?>