Search Results

0
votes
6answers
3k views

Inserting data in XML file with PHP DOM

I was trying to insert new data into an existing XML file, but it's not working. Here's my xml file: <list> <activity>swimming</activity> <activity>r …
1
vote
3answers
1k views

Problems with deleting XML elements using PHP DOM

Here's the XML file i'm working on: <list> <activity>swimming</activity> <activity>running</activity> <activity>soccer</activity&g …
2
votes
5answers
151 views

XML structure for a personal organizer

I'm doing a personal organizer for learning purposes, and i've never worked with XML so i'm not sure if my solution is the best. Here's the basic structure for the XML file i came with: …
2
votes
3answers
1k views

XPath query with PHP

Here's the XML code i'm working with: <inventory> <drink> <lemonade supplier="mother" id="1"> <price>$2.50< …