Answers for "php connect strings"

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

Browse Popular Code Answers by Language