I'm converting some ASP into PHP and in one instance of the ASP this is used chr().
This is exactly how it is used:
body = body + "Comments" + chr(13) + Request.Form("Comments") & chr(13)
I suppose chr(13) means 13 spaces. How would one code that in PHP? Does it have something similar?