In PHP, strings are concatenated together as follows:
$foo = \"Hello\"; $foo .= \" World\";
Here, $foo becomes \"Hello World\"
$foo
a="Hello," a=$a" World!" echo $a
This is how you concatenate two strings.