Single & Double Quotes

Example of Double Quotes

I am watching Central Intelligence movie with my family.

Example of Single Quotes

I am watching $movie with my family.

How is that possible? (Explanation)

PHP uses single quotes and double quotes differently. When variables are used in echo statements, this difference is evident. Double quotes will interpret the variable and substitute it's value for the variable, as shown in the two examples above. Single quotes do not comply with this rule. Instead, the variable itself is printed out.

Example of double quotes and single quotes used above:-

Example