Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
PHP single and double quotes
Ah I found the answer. Basically, variables inside of double quotes will be parsed whereas single quotes would not. Example:
$name = "Bob";
echo("Hello $name");
?>```
The result there would be Hello Bob, whereas in the single quotes:
```markup<?
$name = "Bob";
echo('Hello $name');
?>```
The output would be Hello $name. This really was never relevant to me, because I always used the dots echo("Hello" . $name . "!"); but I guess this could save me a bit of time.
Use double-quotes if you want it to automatically parse variables, if you use single-quotes you have to separate the variables and text with "."s. But I think I heard somewhere that single-quotes are processed faster, because php doesn't have to parse them. I know that a lot of people say that when outputting text like "hello world" that contains no variables, then single-quotes are marginally faster.