PHP SINGLE AND DOUBLE QUOTES
Double quotes (" "): PHP parses variables and special characters inside the double quoted strings. Example - "$name" will show the value that is listed for $name or in the case above is Richard.
Single QuotesSingle quotes (' '): PHP treats everything inside the single quotes literally. This means variables like '$name' will not be replaced by their value and will be output as-is.