|
If you are wanting to strip newlines, then you can use the following logic:
$value = str_replace(array("\r\n", "\r", "\n", "\t"), ' ', $value);
If not, textarea will automatically display newlines, just filter your output value using htmlentities()
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|