xml Feed for PHP for flipkart product fetch

Hi i am making a website which fetch the flipkart live products, i have Product feed API link as
https://affiliate-api.flipkart.net/affiliate/api/zapbytest.xml
can some one tell me how i use this link to fetch the products from this link, and store it in my database…

Thank you in Advance …

get the contents of the xml
parse it.
store it.

Something along the lines of;
[php]
$xml = simplexml_load_file($xmlfile);
$item_number = $xml->product->item->item_number;
[/php]

Once you have started writing the code if you run into any problems come back, post up the code and we’ll help you through it - what we won’t do is just write you a full script without you trying. If this is what you wanted you could always post in the freelancer section for someone to do a paid script for you.

Hope that helps,
Red :wink:

Sponsor our Newsletter | Privacy Policy | Terms of Service