Escape Slash

This is printing my name without an escape slash: Basel
This is with an escape slash: $name

How it works? (Explanation)

In PHP scripts, the escape slash is used to prevent certain parts of the code from being interpreted, effectively just printing them. In order for the interpreter to understand how a statement should be printed, it is used to print text, such as quotes.

Source work for the example above:-

Example