I need a method that concatenate string with enter. As an example my string "Apple", "Box".
That string needs to be as:
$mynewstring = "Apple
Box"
Not as:
$mynewstring ="Apple "."
"."Box" or $mynewstring ="Apple "."<br>"."Box"
Please tell how to do this.