parse text and concatenate 2 strings php code example
Example 1: concatenate string php
<?php
$a = 'Hello';
$b = 'World!';
$c = $a.$b;
echo " $c \n";
?>
Example 2: String Concatenation in PHP
phpCopy<?php
$mystring1 = "This is the first string. ";
$mystring2 = "This is the second string. ";
$mystring3 = "This is the third string. ";
$mystring4 = "This is the fourth string. ";
$mystring5 = "This is the fifth string.";
$finalString = $mystring1 . $mystring2 . $mystring3 . $mystring4 . $mystring5;
echo($finalString);
?>