PHP is a powerful server-side scripting language for creating dynamic and interactive websites
Variables in PHP are used to store values, like text,numbers or arrays. A variable which has been stored can be used over and over again.
Variables in PHP start with "$"
- $variable_name = value;
With PHP, a variable doesn't have to be declared as "string" or "int" as PHP can identify what type a variable is when it is called.
---
Variable Naming Rules