*
/*--------------------------------------------------------------------------*/
function torrentazos($limit=10) {
$pagina = @file_get_contents('http://www.torrentazos.com/index.php');
$discos = array();
if(preg_match_all('!href="http://www\.torrentazos\.com/ficha\.php\?id=(.*)">(.*)!U',$pagina,$elementos,PREG_SET_ORDER)) {
$i = 1;
foreach($elementos as $disco) {
$discos[] = array(
'id' => $disco[1],
'titulo'=> strip_tags($disco[3]),
'imagen'=> $disco[2]
);
if($i==$limit) break;
$i++;
}
}
return $discos;
}
$discos = torrentazos(30);
header('Content-Type: text/xml');
echo '';
?>
Torrentazos.com
http://www.torrentazos.com/index.php
Musica P2P/Bitorrent
-
http://www.torrentazos.com/ficha.php?id=
<h3><a href="http://www.torrentazos.com/descargar.php?id=" title="Descargar"></a></h3>
<p>
<a href="http://www.torrentazos.com/descargar.php?id=" title="Descargar"><img src="" /></a><br />
<a href="http://www.torrentazos.com/ficha.php?id=">Ver ficha</a>
</p>