thanks, it works when i test it out on it's own, but when i use it with forms it's not working for me. part of the problem could be that i'm trying to explode one element of an array.
echo "<pre>$patch_list[0]</pre>";
The above code displays what is below:
A
B
C
D
$new=explode("\n",$patch_list[0]);
$count=count($new);
echo "$count";
The above code displays "1".
I used the <pre> tags above to verify that the line breaks are there, but for some reason it won't explode correctly.
Any ideas? Thanks for the time,
-Michael