Este es el codigo que estoy usando :
Código PHP:
<?
header('Content-Type: application/xml; charset=ISO-8859-1');
echo '<?xml version="1.0" encoding="iso-8859-1"?>';
echo '<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>PlayList</title>';
$musica = glob("music/{*.mp3}",GLOB_BRACE);
foreach ($musica as $msc)
{
echo '<item>';
echo '<media:content url="../'.$msc.'"/>';
echo '</item>';
}
?>
</channel>
</rss>
Cita:
Y la verdad ni idea de como resolverlo.This page contains the following errors:
error on line 7 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.
PlayList
error on line 7 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.
PlayList
Gracias de antemano :D .