Jump to content

How to parse XML product feed using PHP??


rahulephp

Recommended Posts

I am a php programmer but I am not so good with XML files.

For a price comparison website, I need to parse the Amazons XML feed to store product data into the database.

 

Can anyone please help me to find out such a simple script to parse Amazon XML product feed???

(Actually, I need each product data in array to be stored into the database)

 

Thank you in advance.

 

Link to comment
Share on other sites

You can use it like this:

 

<?php
//
$rss=simplexml_load_file("http://www.somesite.com/rss/yourtarget.xml");// can also be yourtarget.rss
//
foreach($rss->channel->item as $post){
  //create multi-dimentional array to hold element values
  $myarray[0] = array( "Url" => $post->link,
                       "Title" => $post->title,
                       "Description" => $post->description,
  );
}
?>

 

Call it as follows:

 

echo $myarray[0]['Url'];

 

or put into an element like this:

 

<td><?php echo $myarray[0]['Url']; ?></td>

 

Hope this helps

Link to comment
Share on other sites

I just noticed I forgot to add a counter:

 

use like this:

 

<?php
//
$rss=simplexml_load_file("http://www.somesite.com/rss/yourtarget.xml");// can also be yourtarget.rss
//
$i=0;
foreach($rss->channel->item as $post){
  //create multi-dimentional array to hold element values
  $myarray[$i] = array( "Url" => $post->link,
                       "Title" => $post->title,
                       "Description" => $post->description,
  );
  $i++;
}
?>

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.