This page will go over the difference between using single quotes and double quotes in PHP

My favorite world in the Sims 4 is Brindleton Bay.

My favorite world in the Sims 4 is $favorite_game_world.

The first sentence used double quotes, and because of that, the variable was interpreted by the PHP so the sentence tells the reader what my favorite world in the Sims 4 is. The second sentence uses single quotes. Everything inside single quotes is taken literally, so instead of saying what my favorite world is in the Sims 4, it shows the variable name instead.