Sessions

From Computer Science Wiki
Revision as of 22:31, 8 February 2017 by 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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]