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