PHP TRAINING Teach By : Than Sare Level : Beginner+1
WHAT IS PHP?  PHP is an acronym for "PHP: Hypertext Preprocessor"  PHP is a widely-used, open source scripting language  PHP scripts are executed on the server  PHP is free to download and use
WHAT IS PHP FILE?  PHP files can contain text, HTML, CSS, JavaScript, and PHP code  PHP code are executed on the server, and the result is returned to the browser as plain HTML  PHP files have extension ".php"
WHAT PHP CAN DO?  PHP can generate dynamic page content  PHP can create, open, read, write, delete, and close files on the server  PHP can collect form data  PHP can send and receive cookies  PHP can add, delete, modify data in your database  PHP can be used to control user-access  PHP can encrypt data  With PHP you are not limited to output HTML. You can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML
WHY WE USE PHP?  PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, etc.)  PHP is compatible with almost all servers used today (Apache, IIS, etc.)  PHP supports a wide range of databases  PHP is free. Download it from the official PHP resource: www.php.net  PHP is easy to learn and runs efficiently on the server side
PHP SYNTAX  A PHP script can be placed anywhere in the document.  A PHP script starts with <?php and ends with ?>
PHP VARIABLES  Variables are "containers" for storing information  A variable can have a short name (like x and y) or a more descriptive name (age, carname, total_volume).  Rules for PHP variables: A variable starts with the $ sign, followed by the name of the variable A variable name must start with a letter or the underscore character A variable name cannot start with a number A variable name can only contain alpha-numeric characters and underscores (A-z, 0- 9, and _ ) Variable names are case-sensitive ($age and $AGE are two different variables)
PHP VARIABLE SCOPE  In PHP, variables can be declared anywhere in the script.  The scope of a variable is the part of the script where the variable can be referenced/used.  PHP has three different variable scopes: 1.local 2.global 3.static
PHP GLOBAL KEYWORD  The global keyword is used to access a global variable from within a function.  To do this, use the global keyword before the variables (inside the function)
PHP STATIC KEYWORD  ormally, when a function is completed/executed, all of its variables are deleted. However, sometimes we want a local variable NOT to be deleted. We need it for a further job.  To do this, use the static keyword when you first declare the variable
PHP ECHO/PRINT  echo and print are more or less the same. They are both used to output data to the screen.  The differences are small: echo has no return value while print has a return value of 1 so it can be used in expressions. echo can take multiple parameters (although such usage is rare) while print can take one argument. echo is marginally faster than print.
DISPLAY VARIABLES
PHP PRINT STATEMENT  The print statement can be used with or without parentheses: print or print().  Display Text and Variable
PHP DATA TYPES  Variables can store data of different types, and different data types can do different things.  PHP supports the following data types: 1.String 2.Integer 3.Float (floating point numbers - also called double) 4.Boolean 5.Array 6.Object 7.NULL 8.Resource
PHP STRING  A string is a sequence of characters, like "Hello world!".  A string can be any text inside quotes. You can use single or double quotes
PHP INTEGER  An integer data type is a non-decimal number between -2,147,483,648 and 2,147,483,647.  Rules for integers:  An integer must have at least one digit  An integer must not have a decimal point  An integer can be either positive or negative  Integers can be specified in three formats: decimal (10-based), hexadecimal (16-based - prefixed with 0x) or octal (8-based - prefixed with 0)  In the following example $x is an integer. The PHP var_dump() function returns the data type and value
PHP FLOAT  A float (floating point number) is a number with a decimal point or a number in exponential form.  In the following example $x is a float. The PHP var_dump() function returns the data type and value:
PHP BOOLEAN  A Boolean represents two possible states: TRUE or FALSE.  Booleans are often used in conditional testing. You will learn more about conditional testing in a later chapter of this tutorial. $x=true; $y=false;
PHP ARRAY  An array stores multiple values in one single variable.  In the following example $cars is an array. The PHP var_dump() function returns the data type and value
PHP OBJECT  An object is a data type which stores data and information on how to process that data.  In PHP, an object must be explicitly declared.  First we must declare a class of object. For this, we use the class keyword. A class is a structure that can contain properties and methods:
PHP NULL VALUES  Null is a special data type which can have only one value: NULL.  A variable of data type NULL is a variable that has no value assigned to it.  Tip: If a variable is created without a value, it is automatically assigned a value of NULL.  Variables can also be emptied by setting the value to NULL
PHP Training Part1

PHP Training Part1

  • 1.
    PHP TRAINING Teach By: Than Sare Level : Beginner+1
  • 2.
    WHAT IS PHP? PHP is an acronym for "PHP: Hypertext Preprocessor"  PHP is a widely-used, open source scripting language  PHP scripts are executed on the server  PHP is free to download and use
  • 3.
    WHAT IS PHPFILE?  PHP files can contain text, HTML, CSS, JavaScript, and PHP code  PHP code are executed on the server, and the result is returned to the browser as plain HTML  PHP files have extension ".php"
  • 4.
    WHAT PHP CANDO?  PHP can generate dynamic page content  PHP can create, open, read, write, delete, and close files on the server  PHP can collect form data  PHP can send and receive cookies  PHP can add, delete, modify data in your database  PHP can be used to control user-access  PHP can encrypt data  With PHP you are not limited to output HTML. You can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML
  • 5.
    WHY WE USEPHP?  PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, etc.)  PHP is compatible with almost all servers used today (Apache, IIS, etc.)  PHP supports a wide range of databases  PHP is free. Download it from the official PHP resource: www.php.net  PHP is easy to learn and runs efficiently on the server side
  • 6.
    PHP SYNTAX  APHP script can be placed anywhere in the document.  A PHP script starts with <?php and ends with ?>
  • 7.
    PHP VARIABLES  Variablesare "containers" for storing information  A variable can have a short name (like x and y) or a more descriptive name (age, carname, total_volume).  Rules for PHP variables: A variable starts with the $ sign, followed by the name of the variable A variable name must start with a letter or the underscore character A variable name cannot start with a number A variable name can only contain alpha-numeric characters and underscores (A-z, 0- 9, and _ ) Variable names are case-sensitive ($age and $AGE are two different variables)
  • 9.
    PHP VARIABLE SCOPE In PHP, variables can be declared anywhere in the script.  The scope of a variable is the part of the script where the variable can be referenced/used.  PHP has three different variable scopes: 1.local 2.global 3.static
  • 10.
    PHP GLOBAL KEYWORD The global keyword is used to access a global variable from within a function.  To do this, use the global keyword before the variables (inside the function)
  • 11.
    PHP STATIC KEYWORD ormally, when a function is completed/executed, all of its variables are deleted. However, sometimes we want a local variable NOT to be deleted. We need it for a further job.  To do this, use the static keyword when you first declare the variable
  • 12.
    PHP ECHO/PRINT  echoand print are more or less the same. They are both used to output data to the screen.  The differences are small: echo has no return value while print has a return value of 1 so it can be used in expressions. echo can take multiple parameters (although such usage is rare) while print can take one argument. echo is marginally faster than print.
  • 13.
  • 14.
    PHP PRINT STATEMENT The print statement can be used with or without parentheses: print or print().  Display Text and Variable
  • 15.
    PHP DATA TYPES Variables can store data of different types, and different data types can do different things.  PHP supports the following data types: 1.String 2.Integer 3.Float (floating point numbers - also called double) 4.Boolean 5.Array 6.Object 7.NULL 8.Resource
  • 16.
    PHP STRING  Astring is a sequence of characters, like "Hello world!".  A string can be any text inside quotes. You can use single or double quotes
  • 17.
    PHP INTEGER  Aninteger data type is a non-decimal number between -2,147,483,648 and 2,147,483,647.  Rules for integers:  An integer must have at least one digit  An integer must not have a decimal point  An integer can be either positive or negative  Integers can be specified in three formats: decimal (10-based), hexadecimal (16-based - prefixed with 0x) or octal (8-based - prefixed with 0)  In the following example $x is an integer. The PHP var_dump() function returns the data type and value
  • 19.
    PHP FLOAT  Afloat (floating point number) is a number with a decimal point or a number in exponential form.  In the following example $x is a float. The PHP var_dump() function returns the data type and value:
  • 20.
    PHP BOOLEAN  ABoolean represents two possible states: TRUE or FALSE.  Booleans are often used in conditional testing. You will learn more about conditional testing in a later chapter of this tutorial. $x=true; $y=false;
  • 21.
    PHP ARRAY  Anarray stores multiple values in one single variable.  In the following example $cars is an array. The PHP var_dump() function returns the data type and value
  • 22.
    PHP OBJECT  Anobject is a data type which stores data and information on how to process that data.  In PHP, an object must be explicitly declared.  First we must declare a class of object. For this, we use the class keyword. A class is a structure that can contain properties and methods:
  • 23.
    PHP NULL VALUES Null is a special data type which can have only one value: NULL.  A variable of data type NULL is a variable that has no value assigned to it.  Tip: If a variable is created without a value, it is automatically assigned a value of NULL.  Variables can also be emptied by setting the value to NULL