Quotes

Examples:
\n \n EXAMPLE OF SINGLE QUOTES \r \b \br $String
EXAMPLE OF DOUBLE QUOTES Whats up doc?


These above examples demonstrate a fundamental principle of PHP, when you use single quotes you are not allowing the program to interpret the string. Therefore all escape sequences will be ignored and will become part of the output. As for the second example when we use the double quotations we are able to see what the $STRING variable holds. This is because PHP is coded to interpret what is inside these quotes, including php commands and html escape sequences. quote code pic