<?php
$txt1 = “BrightTech”;
$txt2 = ” Education”;
$txt1 .= $txt2;
echo $txt1;
?>