Hi all,
I have an array called html which contains rows of text.
E.g:
$html[0] = 1 Full, Gen. 3 TMSWK2D 9 Poor write quality
$html[1] = 2 Full, Gen. 1 TMSWK2C Read Only, Clean Tape
How would I go about taking each array value and splitting the row of text into individual values?
E.g:
$newArr[0][1] = 1
$newArr[1][1] = Full
$newArr[2][1] = Gen.
$newArr[3][1] = 3
$newArr[4][1] = TMSWK2D
$newArr[5][1] = 9
$newArr[6][1] = Poor write quality
$newArr[0][2] = 2
$newArr[1][2] = Full
$newArr[2][2] = Gen.
$newArr[3][2] = 1
$newArr[4][2] = TMSWK2C
$newArr[5][2] = 9
$newArr[6][2] = Read Only, Clean Tape