ajouter deux variables en php

$string = "the color is ";
$string .= "red";

echo $string; // gives: the color is red
John wick