Cita:
Iniciado por andresdzphp Tienes que usar las funciones para ordenar arrays, algo así:
Código PHP:
Ver original<?php
header("Content-type: text/xml"); $directorio = glob('mp3/Vallenatos/*.mp3');
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
echo '<player showDisplay="yes" showPlaylist="yes" autoStart="yes">';
foreach ($directorio as $archivo) {
echo '<song path="mp3/Vallenatos/' . $archivo. '" title="' .$file[0] . '" />' . PHP_EOL;
}
echo '</player>';
[url]http://php.net/manual/es/ref.array.php[/url]
No me fijé en la sintaxis XML. Saludos.
Me imprime Ordenadamente !
pero en el
.$file[0] . no me imrpime el Titulo sin la extension !