concatenate strings php code example
Example 1: php concat
$a = "hello";
$b = "world";
$c = $a . " " . $b;
echo $c;
Example 2: how to combine variables and text into a string php
<?php
$number = 8;
$txt = "the number is".$number.", ok?";
echo $txt;
?>
Example 3: how to add two string in php
Remember dot .
Example 4: php concat variable and string
<?php
$name = "Paul";
$age = 26;
echo "My name is {$name}, I'm {$age} years old ";
Example 5: concatenate string php
<?php
$a = 'Hello';
$b = 'World!';
$c = $a.$b;
echo " $c \n";
?>
Example 6: join string php
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>