When coding you can either use ' or " to declare strings. The single quote is better used to declare pure strings and by that I mean strings that will not include variables inside (even knowing that you can concatenate the string for that). The double quote is used to declare complex strings and by I mean strings that can have variables inside and complex declarations.
By definition a single quote string does not allow you to include a variable within, unless you are concatenating it.