with escape \
Suzzy says $var
Without escape
Suzzy says hello
Without the backslash the variable is interpreted as the variable. This is because PHP interprets the $. However, if you use an escape \ PHP will not interpret the following character, meaning that the $ is printed as is and then PHP sees only the text var and not a variable.