Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a xml string which looks like this,

 <xml>
   <type>name</type>
     <name>
        <namedata>abc</namedata>
        <namedata>efg</namedata>
        <namedata>ijk</namedata>
     </name>
 <xml>

REQUIREMENT: I need to parse the xml to php and show it in a table such that it will display like this

   type   namedata   namedata   namedata
   name      abc        efg        ijk

I tried doing this using foreach but only could get the first value of namedata. Here is what i have done so far :

  $xml = simplexml_load_string($response);
  echo '<table>';
  echo '<tr><td>type'</td></tr>'.$xml->type.'</td><tr>';
  foreach($xml->name as $row){
     echo'<td>'.$row->namedata.'</td>';
    }
   echo'</tr></table>';
share|improve this question

2 Answers

up vote 0 down vote accepted

because there are multiple namdata nodes you can load them as an array like so:

foreach($xml->name->namedata as $row){
    echo'<td>'.$row.'</td>';
}

as for this "Requirement". The easiest way i found was something like:

$xml = simplexml_load_string($response);
echo '<table border="1">';
echo '<tr><td>type</td>';
for($x=0;$x<count($xml->name->namedata);$x++){
    echo '<td>namedata</td>';
}
echo '</tr><tr><td>'.$xml->type.'</td>';
foreach($xml->name->namedata as $row){
    echo'<td>'.$row.'</td>';
}
echo'</tr></table>';
share|improve this answer
thanks samuel, it helped me a lot – Developer Nov 21 '12 at 1:11

Try to use this:

$xml = simplexml_load_file($response);
echo '<table>';
echo '<tr><td>type</td></tr>'.$xml->type.'</td></tr>';
  foreach($xml->name->namedata as $row){
     echo '<td>'.$row.'</td>';
  }
  echo '</tr></table>';
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.