Jump to content

Form Text Area Parse not working with explode


Nemus

Recommended Posts

Hello, I am trying to parse textarea data by row thats submitted from a form.

 

so I have a text area with :

 

input1row1

input2row2

 

which comes as the $inputString  = " input1row1 input2row2";

 

but when I explode (" ", $inputString)

the data doesn't parse by the blank space

 

if i put spaces at the end in the the text area, then it does parse.

 

so I am wondering is there a special text area variable in side the string i can use to parse textarea rows?

 

here is my code.:

 

$self = $_SERVER['PHP_SELF'];

$lanMacs = $_REQUEST['ltextarea'];

 

$splitdata = explode(",", "$textarea");

 

  foreach ($splitdata as $value) {

    echo "<br>: $value<br>\n";

}

 

the out put is one whole string

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.