With my webservice, as I said it a previous post I get some really funky xml. After testing a bit, I have found a few issues that I am uncertain of.
With in the xml result that I receive, I get back xml like such.
<COLUMNS>
[Tab delimited column data]
</COLUMNS>
<DATA>
[Tab delimited data] (this is the data that I am looking for)
</DATA>
<DATA>
[Tab delimited data] (this is the data that I am looking for)
</DATA>
Now the issue that I am having is after parsing the xml, I am left with something like this and I am not quite sure how to parse the DATA portion of the resulting associative array. Any help with this would be greatly appreciated.
$VAR1 = {
'COLUMNS' => '[Some tab delimited column data here]',
'DATA' => ['Some tab delimited data here','Some tab delimited data here']}.
With in the xml result that I receive, I get back xml like such.
<COLUMNS>
[Tab delimited column data]
</COLUMNS>
<DATA>
[Tab delimited data] (this is the data that I am looking for)
</DATA>
<DATA>
[Tab delimited data] (this is the data that I am looking for)
</DATA>
Now the issue that I am having is after parsing the xml, I am left with something like this and I am not quite sure how to parse the DATA portion of the resulting associative array. Any help with this would be greatly appreciated.
$VAR1 = {
'COLUMNS' => '[Some tab delimited column data here]',
'DATA' => ['Some tab delimited data here','Some tab delimited data here']}.