<validate>
<keyword>
<id>1</id>
<name>Priya</name>
<qulification>MSC</qulification>
</keyword>

<keyword>
<id>2</id>
<name>ram</name>
<qulification>BSC</qulification>
</keyword>

<keyword>
<id>3</id>
<name>Roja</name>
<qulification>MSC</qulification>
</keyword>
</validate>

i need some php sample code that retrieve datas from above xml file for the particular id. please help me.

Check the follwoing it may helps you

function simplexml_get_node_value($sxml_obj, $query)
{
      $nodes = explode("->", $query);
      $currTree = $sxml_obj;

      foreach($nodes as $node)
      {
        $currTree = $currTree->$node;
      }
      return $currTree;
}

The usage will be  

$result = 'your xml source';
try { 
	$xml = @new SimpleXMLElement($result);
	} catch (Exception $e) { 
		echo "bad xml";
	}	

$qulification = simplexml_get_node_value($xml, 'qulification');

Hope this helps you.....

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.