PHP Variables & Echo
Variables
Variables start with $. PHP is loosely typed — no need to declare the type.
echo vs print
Both output text. echo is slightly faster and can take multiple arguments. print always returns 1.
String Interpolation
Variables inside double-quoted strings are automatically replaced with their values.