Concat Strings
Two strings can be concatenated by using the operator dot (.). Let's see this with an example:The result for the above echo statement will be:
LearnPHPNow look at the script given below:
The result of this script will be:
Learn PHPHere, we used the concatenation operator twice to include another string i.e. a blank.
