Variables in PHP
All variables in PHP start with the dollar sign followed by the name of the variable. They are case-sensitive which means that $name and $Name are different variables. Because of this many programmers only use lower case characters for variable names.