Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6940803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:48:00+00:00 2026-05-27T12:48:00+00:00

Currently, im having this for appending data to my items file: $xmldoc = new

  • 0

Currently, im having this for appending data to my items file:

    $xmldoc = new DOMDocument();
    $xmldoc->load('ex.xml');


    $item= $xmldoc->createElement('item');

    $item->setAttribute('id', '100');
    $item->setAttribute('category', 'Fitness');
    $item->setAttribute('name', 'Basketball');
    $item->setAttribute('url', 'http://google.com');
    $item->setAttribute('description', 'This is a description');
    $item->setAttribute('price', '899');


    $xmldoc->getElementsByTagName('items')->item(0)->appendChild($item);
    $xmldoc->save('ex.xml');

Now before appending this, I would like to check for an existing element “item” that has the same attribute id value.

And if it does it should update that element with these new data.

Currently it just appends and doesnt check anything.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T12:48:01+00:00Added an answer on May 27, 2026 at 12:48 pm
    $xmldoc = new DOMDocument();
    $xmldoc->load('ex.xml');
    
    $xpath = new DOMXPath($xmldoc);
    $query = $xpath->query('/mainXML/items/item[@id = "100"]');
    
    $create_new_node = false;
    if($query->length == 0)
    {
        $item = $xmldoc->createElement('item');
        $create_new_node = true;
    }
    else
    {
        $item = $query->item(0);
    }
    
    $item->setAttribute('id', '100');
    $item->setAttribute('category', 'Fitness');
    $item->setAttribute('name', 'Basketball');
    $item->setAttribute('url', 'http://google.com');
    $item->setAttribute('description', 'This is a description');
    $item->setAttribute('price', '899');
    
    if($create_new_node)
    {
        $xmldoc->getElementsByTagName('items')->item(0)->appendChild($item);
    }
    $xmldoc->save('ex.xml');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently using this jQuery validate plugin and having an issue in IE where
I want to print a Framework element on a paper. I'm currently having this:
I'm currently having the following method which requires params - I cannot change this
In my current company, we have one tester. Having spoken to this tester, she
I am having a bit of difficulty with this current code I have set
I'm having trouble getting a sample program to link correctly (in this case against
Currently having some problems- now = datetime.datetime.now() month = now.strftime(%B) site = wikipedia.getSite('en', 'wikiquote')
im currently having troubles on my codes in C#. I want to split strings
We're currently having a debate whether it's better to throw faults over a WCF
I'm currently having a major issue with a python script. The script runs arbitrary

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.