Adicione duas variáveis no PHP
$string = "the color is ";
$string .= "red";
echo $string; // gives: the color is red
John wick
$string = "the color is ";
$string .= "red";
echo $string; // gives: the color is red