Saturday, July 5, 2008

Basic Syntax and Example of PHP

You should save your file with the extension .php in php language.


$txt = "This is my first PHP script";
/* This line creates the variable $txt and gives it the initial value. Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case-sensitive. */

echo $txt;
?>

No comments: