simple concatenation
$a = "ThisIsA"
echo "=======" + $a + "======="
gives me
+
========
+
ThisIsA
I want ========ThisIsA========
I tried several forms of the join operator. I tried taking out the +. I tried replacing
the + with commas. They all give me pretty much the same thing: at least 3 lines of output.
I'm looking for one. This has got to be easy. I suppose it could be that I have been testing with v1.0 rather than 2.0, but I suspect not.
Solutions would be much appreciated. I've searched the heck out of the internet with no success.