Ben bir crossdomain dosyası yoktur ve bu nedenle ben en url diyelim (ben sadece bir url den rss feed elde edilecektir ortasında bir web hizmeti kullanmak için gidiyorum bir etki bir rss feed kullanmaya çalışıyorum www.example.com / yem) ve daha sonra sadece bir sayfa yazdırmak: olduğunu.
Servis gibi çalışır: www.mywebservice.com/feed.php?word=something) ve bu sadece için rss feed yazdırmak gidecek:) www.example.com/feed&q=word.
Ben kullanılan:
<?php
$word = $_GET["word"];
$ch=curl_init("http://example.com/feed.php?word=".$word."");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
curl_close($ch);
print $data;
?>
But this did not work, it gives me (SYSTEM ERROR: we're sorry but a serious error has occurred in the system). I am on shared hosting Any help?