phpCopy<?php $mystring1 = "This is the first string. "; $mystring2 = "This is the second string."; $finalString = $mystring1 . $mystring2; echo($finalString); ?>