Read Second Line of WWWForm.data

I need to read the second line of my w.data.

echo $datas[“nick”] . “\n” . $datas[“type”];

I need to read the nick on one component and the type on another.

split the data (string.Split() function) you get by the line break character or use another way to read line by line of a string, there are various approaches