concatenation operators in php

concatenation Operator in php

It is used to two string values together.

Example of Concatenation Operator in Php
<?php


$t1="Welcome!";

$t2="Php";

echo $t1 . " " . $t2;

?>
it will get : Welcome Php