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 and not just \n")
EDIT:
I forgot to mention that I am saving $_POST['thetextarea'] to a mysql database VARCHAR 255. It seems \r\n is converted to \n.
\r\n
then spliting on newlines would still work, and just keep extraneous carriage returns in the lines. – Efthim