
26/02/2010, 11:01
|
| | Fecha de Ingreso: febrero-2009
Mensajes: 17
Antigüedad: 16 años, 1 mes Puntos: 1 | |
Respuesta: Xml + php Encontre la solucion:
$feed = file_get_contents("playlist.xml");
$xml = new SimpleXmlElement($feed);
foreach ($xml->trackList->track as $entry){
echo $entry->title . "<br />";
echo $entry->creator . "<br />";
echo $entry->location . "<br />";
echo $entry->image . "<br />";
echo $Conta."<br />";
}
Gracias a http://blog.sherifmansour.com/?p=302 |