PHP Concatenation
PHP allows you to concatenate strings with the "."
$concatenation= $a . $b;
Or to affect, in the variable $ a, the value of the concatenation of $ a and $ b:
$a.=$b;
To concatenate strings and variables it is sufficient to proceed as follows:
$concatenation= 'La variable b vaut : ' . $b;