Thanks for the quick answers. 

Problem is, the only new lines are at the end of paragraphs, so that, in
effect, is limiting them to 55 paragraphs.  I'm using a <textarea
wrap=physical> which says that it adds a "%0A%0D" (carriage return/line
feed) at the end of each line.  

Anyone know how to convert that to a "\n" ?

thanks again.

Dan
Mojolin: The Linux Employment Site
http://mojolin.com

> If you're expecting new lines, you could do this:
> 
> $length = explode("\n", $message);
> 
> if (sizeof($length) > 55) {
>     // error
> }
> 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to