Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
PHP Code:
$textArea=<<<TXT value1 value2 value3 value4 TXT;
$ary=explode("\n",$textArea);

\n being the new line character, it split the string on the "enter" key.
Yay. easy tp for me !
__________________
Only a biker knows why a dog sticks his head out the window.
|