My first page has a textarea input, that is posted through a form to the second page…
<textarea name=import id=import></textarea>
where some php code tries to explode the input text by it’s enter spaces or breacks, but it’s not working.
$import = explode("//n",$_POST[import]);
I have tried too:
$import = explode("/n",$_POST[import]);