concatenate string in php code example
Example 1: how to combine variables and text into a string php
<?php
$number = 8;
$txt = "the number is".$number.", ok?";
echo $txt;
?>
Example 2: php concat
$a = "hello";
$b = "world";
$c = $a . " " . $b;
echo $c;
Example 3: php concatenate and add
this is inside for or foreach loop
$var .= 'string';
$var += 1;
Example 4: concatenate string php
<?php
$a = 'Hello';
$b = 'World!';
$c = $a.$b;
echo " $c \n";
?>
Example 5: php string concat
$name [] = ['abhi']
Example 6: String Concatenation in PHP
phpCopy<?php
$mystring1 = "This is the first string. ";
$mystring2 = "This is the second string.";
$finalString = $mystring1 . $mystring2;
echo($finalString);
?>