So you can use single or double quotes for Strings. But what’s the difference? Let’s take a look. The main difference between single and double quotes is any string in double-quotes will be processed by PHP before it’s outputted. That means, for example, any variables in strings with double quotes will become their literal value. Let’s take a look at an example here. Where on the left side of the screen, I have my code and on the right side of the screen, I have the It in the browser. I’ll type my opening PHP tag. And then I will create a variable called name. So we’ll say, the name gets Joe and I’ll put Joe in single quotes. Then we’ll say Echo? Double quote. Hello, comma space name. Remember PHP Prince exactly as we type within the quotes so we need to add any punctuation spaces and things. Like that. Then we’ll add our semicolon will save this and will refresh the page. You can see it says, hello Joe. Now, if we change this string to single quotes, first of all, you’ll notice ...