how to concatenate variables in php code example
Example 1: php concat
$a = "hello";
$b = "world";
$c = $a . " " . $b;
echo $c;
Example 2: php append string
<?php
$a = "Hello ";
$b = $a . "World!";
$a = "Hello ";
$a .= "World!";
?>
Example 3: php concatenate and add
this is inside for or foreach loop
$var .= 'string';
$var += 1;
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";
?>