Hey guys, I have looked all around for help but found nothing sadly. I am trying to use PHP to grab the contents of an XML file and pull the data from an attribute. I have checked other tutorials and tried but none worked.
Here is the XML file:
<eveapi version="2">
<currentTime>2011-04-03 03:55:59</currentTime>
<result>
<rowset name="notifications" key="notificationID" columns="notificationID,typeID,senderID,sentDate,read">
<row notificationID="339040500" typeID="75" senderID="1000137" sentDate="2011-04-03 03:53:00" read="0" />
</rowset>
</result>
<cachedUntil>2011-04-03 04:25:59</cachedUntil>
</eveapi>
I am trying to pull the data from 'typeID' & 'sentDate'. Also, this XML file may containt multiple tags.
All help is welcomed, thanks!