Jump to content

PHP5 / XML API help!


oskare100

Recommended Posts

Hello,

I'm trying to prase and use information I'm getting from an XML API in my system. The user is supposed to be able to choose between the returned agents and then select one of them. When they click "continue" or similar the rows of the agent that the user selected should be saved/assaigned to different PHP variables.

 

Here is the structure of the XML return:

<xml>
<system>
<error>
<id>0</id>
<message>Your request was successfully processed.</message>
7</error>
</system>
<response>
<service>
<name>Agents</name>
<version>10</version>
</service>
<data_list_count>2</data_list_count>
</response>
<data_list>
<data index="0">
<agent_list>
<agent index="0">
<name>AGENT & CO IT</name>
<address>STREET ADDRESS 2</address>
<address2/>
<zipcode>500000</zipcode>
<city>TOWN</city>
<agent_number>0661</agent_number>
</agent>
<agent index="1">
<name>ANOTHER AGENT</name>
<address>STREET ADDRESS 5</address>
<address2/>
<zipcode>600000</zipcode>
<city>CITY</city>
<agent_number>0662</agent_number>
</agent>
</agent_list>
</data>
</data_list>
</xml>

 

Now I need to list the agents so that the user can select one of them.. I've understood that I should use SimpleXML for this since it is the easiest way.

 

$xml = simplexml_load_file($request_url) or die("feed not loading");

 

That about what I've managed to do, I understand that in some way I need to list the different agents.

 

foreach ($xml-> ...? ) (
print ?
)

 

Then I would need to add so that the user can select one of the returned agents and click continue and that my script then can get the rows/information about the selected agent. Maybe HTML POST/GET but I don't know how to make it do that...

 

I appreciate any help, links, code or whatever I can use to solve this problem.

 

Thanks

/Oskar

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.