I am getting post value from a textarea like this:
11223344
55667788
99001122
33445566
77889900
I need to form it like
Array
(
[0] => 11223344
[1] => 55667788
[2] => 99001122
[3] => 33445566
[4] => 11223344
[5] => 77889900
)
using explode()
function in php. how it possible?
I have already used explode('\n\r', $datas)
.
thanks