php combine 2 variables into 1 code example
Example: php concatenate two variables
$string = "the color is ";
$string .= "red";
echo $string; // gives: the color is red
$string = "the color is ";
$string .= "red";
echo $string; // gives: the color is red