Variables in php: Difference between revisions
Mr. MacKenty (talk | contribs) (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...") |
Mr. MacKenty (talk | contribs) 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 19:39, 18 September 2016
Remember this about variables[2]:
- 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)