In Php you can use single quotes and double quotes to enclose strings. But there is a subtle difference between using single quotes and double quotes. When using double quotes, any variable referenced inside the string gets expanded. You don't have to concatenate strings and variables, instead simply put the variables inside the string.

In VS.Php 2.5, we improved the support for variables inside double quoted strings. They are color coded correctly as if they were outside the string. The following illustrates a simple double quoted string referencing a Php variable:

You can even do more sophisticated stuff inside quotes by wrapping a method call inside curly brakets like this:

When editing inside a double quotes string, you also get intellisense for variables.