ISBN Lookup from Amazon.com
Moderator: General Moderators
-
sonicworld
- Forum Newbie
- Posts: 5
- Joined: Thu Aug 04, 2005 6:00 am
ISBN Lookup from Amazon.com
Can anybody get me a php code to do ISBN lookup from Amazon.com
Code: Select all
$isbn = "0439784549";
$url = "http://www.amazon.com/exec/obidos/tg/detail/-/$isbn";
$contents = file_get_contents($url);
echo $contents;-
sonicworld
- Forum Newbie
- Posts: 5
- Joined: Thu Aug 04, 2005 6:00 am
Thanks
Thanks for your reply..
But i would like to retrieve the data from amazon using there webservice.. i want to display the details in my own customized page. can u tell me how to do that? are there any free scripts? or sample scripts?
TIA
But i would like to retrieve the data from amazon using there webservice.. i want to display the details in my own customized page. can u tell me how to do that? are there any free scripts? or sample scripts?
TIA
-
sonicworld
- Forum Newbie
- Posts: 5
- Joined: Thu Aug 04, 2005 6:00 am
thanks
But they dont give any sample php scripts..
can anybody get me some sample php scripts?
TIA
can anybody get me some sample php scripts?
TIA
-
sonicworld
- Forum Newbie
- Posts: 5
- Joined: Thu Aug 04, 2005 6:00 am
Thanks
Thanks it really helped..