- PHP is a scripting language used to create dynamic web pages. A PHP scripting block starts with <?php and ends with ?>. PHP code can be embedded within HTML.
- Variables in PHP start with a $ sign and do not require explicit declaration of data types. PHP is a loosely typed language.
- Conditional statements like if/elseif/else and switch can be used to control program flow based on conditions.