can I do:
explode(\"\\n\", $_POST[\'thetextarea\']);
and have it work on all platforms? (The question I am asking is will it ever be \\r\\n
You can do something like this:
$text = trim($_POST['textareaname']); $text = nl2br($text);