Below are two examples using single quotes and double quotes in PHP.

(AKA Part 3 for Assignment 3)

My kitties are named Puma and Pickle.

My kitties are named $kitties.

My explanation:

Echo statements in PHP process what is within single quotes literally, therefore displaying what is typed between the single quotes onto the page.

However, echo statements in PHP process double quotes as interpretation allowing for functionality such as passing the variable through the string to be outputted as what was saved within it previously, rather than displaying the name of the variable itself.