[eluser]Craig A Rodway[/eluser]
Single quotes for strings where I don't need variable access, and double-quoted for strings where I need to access variables (but only with curly braces - this is quicker than just placing variable references in strings).
Code:
$name = 'Craig';
echo "Hello world, my name is {$name}!";