I have a general question...In php is it possible to get a selected product price from other sites like flipcart,amazon etc. For example if I search for LCD Tv I want to get its price from different shopping sites like amazon,jabong ...etc to list like this. Amazon price--40,000 RS Flipcart price--40,000 RS
how can I get its price... If possible can you please direct me how it can be done? thanks in advance...
The best way is to search about their APIs.
Amazon provide, a rich library set "Amazon Marketplace" to search, and get information about different products.
Likewise you can find for others.
If you want to do that with PHP, my suggestion is cURL (link).
The idea is that you'll request the page information from your URL and then parse the HTML content you get, looking for the price.
On that specific URL, for example, the price is in the following tag:
<span class="fk-font-verybig pprice vmiddle fk-bold"> Rs. 29890</span>
So when parsing, just loog for that tag and get its content