I am trying to run search and get the result from ebay in PHP with following code file_get_contents(http://search.ebay.com/search/search.dll?from=R40&_trksid=m37&satitle=ram&category0=) but I get error failed to open stream: HTTP request failed! HTTP/1.1 503 But I am able to open an item page ! Help needed !
Have you tried putting quotes around the URL? <? echo file_get_contents("http://search.ebay.com/search/search.dll?from=R40&_trksid=m37&satitle=ram&category0="); ?> PHP: