Im trying to write a PHP code that will download the XML from this page.
http://torrents.thepiratebay.org/filelist/4240969
When i load that page in PHP , i get some very weird signs/characters.
I first suspect that i needed JSON to convert the signs.. but i couldnt get my code to work..
This is a small sample of my simple code:
Code: Select all
$file_open =file('http://torrents.thepiratebay.org/filelist/4240969');
foreach($file_open as $row){
echo $row;
}big thx in advance..