I am trying to create an array from a textarea input. I want each new line of the textarea to be a new element of the array. My goal is to count the number of elements submited and format the output. Thank you!
$array=explode("\n",$textareastring);
perhaps?
THANK YOU!!