concatenate 2 strings php specific values 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";
$finalString = sprintf("%s %s", $mystring1, $mystring2);
echo($finalString);
?>