hi all
here is my xml file note.xml file

<?xml version="1.0" encoding="ISO-8859-1"?>
<agents>
    <agent>
    <id>1</id>
    <image> img/primary-nav-logo.png</image>
    <name>Tommy Jenkin</name>
    <company>CJenkins Insurance</company>
    <street>Insurance150 S State Stree</street>
    <city>Linkend</city>
    <phone>(773) 561-4331</phone>
    </agent>
    <agent>
    <id>2</id>
    <image> img/primary-nav-logo.png</image>
    <name>Tommy Jenkin</name>
    <company>CJenkins Insurance</company>
    <street>Insurance150 S State Stree</street>
    <city>Linkend</city>
    <phone>(773) 561-4331</phone>
    </agent>
</agents>

and i have to print xml record of id 1 and i have write code in php like this

<?php
    $xml = simplexml_load_file("note.xml") or die("Error: Cannot create object");
    foreach($xml->xpath('//agent') as $item) { 
    $row = simplexml_load_string($item->asXML());
    $v = $row->xpath('//id[. ="1"]');
    if($v[0]){ 
        print $item->id; 
        print $item->image; 
        print $item->name; 
        print $item->company; 
        print $item->street; 
        print $item->city;
        print $item->phone; 
    }
    else{
        echo 'No records';
    }
?>

please suggest me where

You're missing a closing bracket for your foreach loop.

I would do something like this probably

<?php

if (file_exists('note.xml')) {

    $xml = simplexml_load_file("note.xml");
    $i = 0;

    foreach($xml->agent as $agent) {

        if($agent->id == 1){

            print $agent->id;
            print $agent->image;
            print $agent->name;
            print $agent->company;
            print $agent->street;
            print $agent->city;
            print $agent->phone;

            $i++;
        }

    }        
    if($i == 0){
        echo "No records found";
    }

}else{      
    exit('Failed to open file');      
}

?>
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.