Even just a simple <?php readfile($_GET['url']) ?>
results in a not acceptable error.
Any thoughts?
Even just a simple <?php readfile($_GET['url']) ?>
results in a not acceptable error.
Any thoughts?
This just won't work because with AJAX you are restricted with the same origin policy. So unless your site is actually hosted in isbndb.com, this will never work.
From the W3C documentation 3.6.1.13
If the origin of url is not same origin with the XMLHttpRequest origin raise a SECURITY_ERR exception and terminate these steps.
You have to parse the data from isbndb.com on your server and then return it, you can't do cross-domain call with AJAX.