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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:40:39+00:00 2026-05-30T00:40:39+00:00

I want to parse (little critical) xml using php simplexml…But i can aither get

  • 0

I want to parse (little critical) xml using php simplexml…But i can aither get attribute or either value…m not able to parse this XML properly

<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/crm/private/xml/Leads/getMyRecords">
    <result>
        <Leads>
            <row no="1">
                <FL val="LEADID">418176000000051001</FL>
                <FL val="SMOWNERID">418176000000047003</FL>
                <FL val="Lead Owner"><![CDATA[Amit Patil]]>
                </FL>
                <FL val="Company"><![CDATA[demo Company]]>
                </FL>
                <FL val="First Name"><![CDATA[Test]]>
                </FL>
                <FL val="Last Name"><![CDATA[Demo]]>
                </FL>
                <FL val="Designation"><![CDATA[Tesing Lead]]>
                </FL>
                <FL val="No of Employees"><![CDATA[0]]>
                </FL>

And this is what i am soo far

$xml = simplexml_load_file($url);
if($xml != null){
   foreach($xml->result->Leads->row as $key=>$row){
       foreach($row->FL as $key=>$val){
           echo $val.",";
       }
   }
}

How can i parse this XML using simplexml or may be something else ??

  • 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-30T00:40:40+00:00Added an answer on May 30, 2026 at 12:40 am

    val is an attributeof FL, not the content… so I’m not sure what you’re trying to retrieve when you use the ambiguously named $val

    As the code you have should already display the content of each element: to retrieve the attributes, use

    foreach($xml->result->Leads->row as $key=>$row){
        foreach($row->FL as $key => $value){
            echo $value['val']." => ";
            echo $value."<br />";
        }
    }
    

    From your snippet of XML, this gives:

    LEADID => 418176000000051001
    SMOWNERID => 418176000000047003
    Lead Owner => Amit Patil 
    Company => demo Company 
    First Name => Test 
    Last Name => Demo 
    Designation => Tesing Lead 
    No of Employees => 0 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to parse Google News RSS with PHP, to get actual links of
I've made a little forum and I want parse the date on newest posts
I want to parse google and yandex search results for my little website analyzer
I want to execute a build.xml (Ant buildfile) from using GMaven (Maven Plugin for
I want to parse with XmlSlurper a HTML document which I read using HTTPBuilder.
I'm using IPAddress.TryParse() to parse IP addresses. However, it's a little too permissive (parsing
I'm writing a simple templating layer in PHP but I've got myself a little
Is it possible in php with the default xml classes to parse an xml
so I want to parse an xml and display (in a UITableView) the subjects
I have a string that I want to parse using regex. It has the

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.