PHP - Form mail converting line breaks to spaces
问题 I have a <textarea> in a form for user comments, and when the contents are passed to form mail, the line breaks are being converted to spaces. How can I preserve the line breaks that the form's user types in? relevant php: $comments = $_REQUEST['comments']; // This grabs the comments from the submitted form //... $to = $configEmail; $subject = "Website Order Received: $offer"; $contents = "blah blah blah..."; if (!empty ($comments)) { $contents = $contents."\nComments: $comments\n\n"; } //...