When you use double quotes, it parses the contents of the string (i.e. you can put a variable within the string like $var = "Var2: $var2"; and the end result will have Var2: (contents of $var2)). When you use the single quotes, it does not parse the string, and the result is faster execution. Hope that helps!
Chris King