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 8482927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:56:44+00:00 2026-06-10T19:56:44+00:00

Possible Duplicate: PHP xpath – find element with a value and also get elements

  • 0

Possible Duplicate:
PHP xpath – find element with a value and also get elements before and after element

I have the following xml:

<Table>
    <ID>100</ID>
    <Name>Fridge</Name>
    <Description>A cool refrigerator</Description>
</Table>
<Table>
    <ID>100</ID>
    <Name>Fridge</Name>
    <Description>Latest Refrigerator</Description>
</Table>
<Table>
    <ID>200</ID>
    <Name>Fridge</Name>
    <Description>Another refrigerator</Description>
</Table>

In the example above, I would like to get the child values of Name and Description for the nodes with ID=100. There are around 1000 Table nodes in the xml file.

How can i parse the entire xml and get the Name and Description values for only the nodes with ID equal to 100 ?

So far, i have tried the following code, which could not give what i wanted:

$source = 'Tables.xml';
$xmlstr = file_get_contents($source);
$sitemap = new SimpleXMLElement($xmlstr);

$sitemap = new SimpleXMLElement($source,null,true);

foreach($sitemap as $url) {

    if($url->ID == '100')
    {
        echo 'Name: '.(string)$url->Name.', Description: '.(string)$url->Description.'<br>';
    }
}
  • 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-06-10T19:56:46+00:00Added an answer on June 10, 2026 at 7:56 pm

    This should be pretty straightforward if you get all Table tags and loop over them:

    // Assuming you already loaded the XML into the SimpleXML object $xml
    $names_and_descriptions = array();
    foreach ($xml->Table as $t) {
      if ($t->ID == 100) {
        echo $t->Name . " " . $t->Description . "\n";
        // Or stick them into an array or whatever...
        $names_and_descriptions[] = array(
          'name'=>$t->Name, 
          'description'=>$t->Description
        );
      }
    }
    var_dump($names_and_descriptions);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Get xpath location of element in iframe(iframe from my domain) I have
Possible Duplicate: PHP get both array value and array key I am using Codeigniters'
Possible Duplicate: PHP Get end string on url between / and / I have
Possible Duplicate: php/html - http_referer I want to find which page/script get request to
Possible Duplicate: PHP Regex Get Text Between BBCode Tags I have a text like:
Possible Duplicate: PHP XML how to output nice format I have the following PHP
Possible Duplicate: Will XPath 2.0 and/or XSLT 2.0 be implemented in PHP? I think
Possible Duplicate: php false place in condition I have noticed that a lot of
Possible Duplicate: php loop through associative arrays i have a variable which prints an
Possible Duplicate: php loop through associative arrays i have this piece of code which

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.