The cow says $cownoise. Escape slash is used.
The bull says moo moo. Escape slash is not used.
Escape slash will tell PHP to not run characters as code and only use literal values.
In the example above, first sentence has the variable $cownoise written but with an escape slash in front of it.
This told PHP to print out exactly as written and ignore the code.
Home