I have $var dog (Using single quotes)
I have 1 dog (Using double quotes)
Single quotes (') in PHP are like a strict rulebook where what you see is what you get. A variable will not be replaced with its value.
Double quotes (") in PHP are more flexible. If you put something in double quotes, PHP will check if there are special things like variables to make them work.