Practicing php Escapes

escape characters allow you to use multiple quotes within a single string. These escape characters remove 'ambiguity' from the string, clearly indicating where the start and end points for it are. if a string is ambiguous (ie attempting to use multiple of the same quotes in one string), the compiler will throw an error; Whatever is inside the escape characters 'escapes' the php compiling and is compiled differently

This line is an example of "escape characters" in action, "which is much easier"
This line shows an alternative to escape characters, which is to use 'single quotes' to 'remove ambiguity'