Link to home
Start Free TrialLog in
Avatar of charles_cp
charles_cp

asked on

Modify xml by php dom

Dear

I would like to use php, dom to modify a xml file. For example, i have a book.xml as below. If I want to change publisher "Thomson" to "Wiley". How can I do that? Does anyone can give me a php code to do this? Thank you very much!

  <books>
  <book>
  <author>Don Gosselin</author>
  <title>PHP Programming with MySQL</title>
  <publisher>Thomson</publisher>
  </book>
  <book>
  <author>Jack Herrington</author>
  <title>Podcasting Hacks</title>
  <publisher>O'Reilly</publisher>
  </book>
  </books>
Avatar of Eddie Shipman
Eddie Shipman
Flag of United States of America image

Is this PHP4 or PHP5, it makes a difference and is this a file stored somewhere or just in-memory
XML?
ASKER CERTIFIED SOLUTION
Avatar of Roonaan
Roonaan
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial