php concatenate strings echo code example
Example 1: how to add two string in php
Remember dot .
Example 2: join string php
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>
Remember dot .
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>