Variables are "containers" for storing information. In PHP, a variable starts with the $ sign, followed by the name of the variable.
PHP has no command for declaring a variable; it is created the moment you first assign a value to it.
$name or $_name).$age and $AGE are two different variables).The PHP echo statement is often used to output data to the screen. You can combine text and variables using the dot (.) operator.
PHP is a Loosely Typed language. This means you do not have to tell PHP which data type the variable is (like Integer or String). PHP automatically associates a data type to the variable, depending on its value.
$user_email instead of just $e.