how to combine stings php code example
Example 1: php connect strings
$string3 = $string1 . $string2;
Example 2: join string php
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>
$string3 = $string1 . $string2;
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>