Answers for "do strings and string variables need to be operatively concatenated in php?"

PHP
-1

php concatenate two variables

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

echo $string; // gives: the color is red
Posted by: Guest on May-23-2020

Code answers related to "do strings and string variables need to be operatively concatenated in php?"

Browse Popular Code Answers by Language