how do i make text put into a textarea be sent with "\n"s after a certain amout of characters, say 65?
You can use the wordwrap function to do that easily... Just use:
$text = "This is the text you want to use"; $text = wordwrap($text, 65);
More information is available here: http://www.php.net/manual/en/function.wordwrap.php
John Cornett