add strings together 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 connect strings
$string3 = $string1 . $string2;
Example 3: how to add two string in php
Remember dot .
Example 4: concatenate string php
<?php
$a = 'Hello';
$b = 'World!';
$c = $a.$b;
echo " $c \n";
?>
Example 5: 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);
?>