PHP Variables Declaring And Output...

8:19 AM


  • What is the Variable

  •          Variables are "containers" for storing information.

  • Creating (Declaring) PHP Variables.
  •         In PHP, a variable starts with the $ sign, followed by the name of the variable:
      
Example :: 


  • PHP Variables.
    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).
  • Operation Variables (like Sum)
  • Output Variables.

  • Output Second.php File ......


Thanks .....Enjoy the Program .....

You Might Also Like

0 comments