How to add CRLF to a string?

0
I'm concatenating $ErrorMsg = $ErrorMsg + 'New error message' What's the syntax to make this?: $ErrorMsg = $ErrorMsg + 'New error message' + CRLF
asked
1 answers
1

Oops, right after posting I got a brainwave:

$ErrorMsg = $ErrorMsg + 'New error message < br >'

(extra spaces added for viewing)

answered