When I press the return key to start a new line for the post, the result auto-ignore the return key. I wondered what the most common way of making the output actually starts wi
No. The is not at all present there. There's \r\n. So you need to use:
\r\n
$comment = nl2br($comment);
To convert all the new lines to break in your PHP code.