Answers for "add two variable in php"

PHP
-1

add two variable in php

$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