OK, made a bit of progress...but ran into another issue now that I have solved one.
Using:
$lines = explode("\n", $data);
$num = count($lines);
$val2 = explode("\t", $lines[2]);
foreach ($lines as $v) {
$exp = explode("\t", $v);
echo "Values: $val2[1], $exp[1], $exp[2], $exp[3], $exp[4].<br />\n";
}
This is exploding exactly what I need...except I need to disregard some of the information. I am now extracting:
Values: 46219808, , , , .
Values: 46219808, eid, asof, , .
Values: 46219808, 46219808, 1126113901, , .
Values: 46219808, product, amt, when, first.
Values: 46219808, 1031105, 1, 1123521907, 0.
.....repeats for each line and ends with:
Values: 46219808, 657, $, , .
Values: 46219808, , , , .
So its almost there. What I now need to do is totally disregard the first 4 lines listed above (and start with my product information)....and also disregard the last two lines.
Anyone have any quick thoughts on this one?