Variables are a fundamental part of any programming language.
A variable is a container that holds a certain value.
A variable consists of two parts: the variable's name and the variable's value.
PHP has certain rules you must follow when naming your variables:
Variable names are case - sensitive.
$Variable and $variable are two distinct variables.
Here are some examples of PHP variable names:
$my_first_variable $anotherVariable $x $_123