Answers for "how to put two php variable together"

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 "how to put two php variable together"

Browse Popular Code Answers by Language