Variables are "containers" for storing information. In PHP, a variable starts with the $ sign, followed by the name of the variable.
$ sign$age and $AGE are different variables)Unlike other languages, PHP has no command for declaring a variable. It is created the moment you first assign a value to it.
Edit the code below and click Run to see the result live.