><input type="text"> cannot have multiple lines, use <textarea name="
>name " col=" num of cols " rows=" num of rows ">this
>
>little amount of
>
>text</textarea>

This is true.

Also, watch the line endings coming aout of that textarea - you may want
to normalize them. I prefer unix linebreaks, so I use this to convert mac
and DOS endings:

        str_replace(array("\r\n", "\r"), "\n", $textarea_value)

---------------------------------------------------------------------
michal migurski- contact info and pgp key:
sf/ca            http://mike.teczno.com/contact.html


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to