Quotes in PHP

This is a single-quoted string.
This is a double-quoted string.

Single quotes do not parse variables or escape sequences, while double quotes do. For example, '$variable' will display the variable name, whereas \"$variable\" will display the variable's value.