Variables in php: Difference between revisions

From Computer Science Wiki
(Created page with "right|frame|PHP Programming Language<ref>http://www.flaticon.com/</ref> Remember this about variables<ref>http://www.w3schools.com/php/php_variables.asp</ref...")
 
No edit summary
 
Line 8: Line 8:
# A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
# 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)
# Variable names are case-sensitive ($age and $AGE are two different variables)
== See also ==
* [[Variables]]


== References ==
== References ==

Latest revision as of 20:39, 18 September 2016

PHP Programming Language[1]

Remember this about variables[2]:

  1. A variable starts with the $ sign, followed by the name of the variable
  2. A variable name must start with a letter or the underscore character
  3. A variable name cannot start with a number
  4. A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
  5. Variable names are case-sensitive ($age and $AGE are two different variables)

See also[edit]

References[edit]