I'm not really a web developer and I'm trying to make a web interface for parsing and displaying experimental data, so I apologize if this is a ridiculously easy solution. I'm trying to take data from an XML element and convert it into a PHP numerical array that I can plot using GD. So far, I have the XML creation, XML loading, and GD plotting finished (I think), but what I need is the key to converting the data into a PHP array to finish.
I have an xml file with numeric data stored like this:
<?xml version="1.0" encoding="utf-8" ?>
<NotData>
<Data>0 1 2 3 4 5 6 7 8 9</Data>
</NotData>
I'm using simplexml_load_file to read in the data file. Then I pull out the data like this:
$myData=$xmldata->NotData[0]->Data;
Now I have an object with the data inside, but I'm not sure how to get this out into a numeric array. Where do I go from here?