Last Updated: February 25, 2016
·
560
· morekasia

Variables in PHP strings

Always concatenate the variables with strings, instead of echoing them inside a string. This saves confusion, and a lot of issues.

so

echo "foo bar" . $foo;

instead of

echo "foo bar {$foo}";