assign and concat same string php code example
Example 1: how to add two string in php
Remember dot .
Example 2: String Concatenation in PHP
phpCopy<?php
$mystring1 = "This is the first string. ";
$mystring2 = "This is the second string.";
$mystring1 .= $mystring2;
echo($mystring1);
?>