bueno me estoy rompiendo la cabeza tratando de generar un xml con php que lo lea el reproductor en fin no he podido
la estructura de mi xml es esta
Código PHP :
<?php /* This is a sample file that extracts a list of records from a mysql database and builds a playlist from it. After looking through this file, you'll probably 'get the idea' and'll be able to connect the flash player to your own database. */ // Conectar DB $dbcnx = @mysql_connect("localhost","derzz_web","c4rl0z!"); $dbselect = @mysql_select_db("derzz_db"); if ((!$dbcnx) || (!$dbselect)) { echo 'no se puede conectar al DB'; } // consultar $query = "SELECT nombre,ruta FROM archivos_mp3"; $result = mysql_query($query) or die('Query failed: ' . mysql_error()); // aki xml header("content-type:text/xml;charset=utf-8"); echo '<?xml version="1.0" encoding="utf-8"?>'; echo ' <songs>'; // bucle con array de nombre y ruta while($row = @mysql_fetch_array($result)) { echo '<song title="'.$row['nombre'].'"' 'path="'.$row['ruta'].'"/>' } // cerrar el tag echo ' </songs>'; ?>
alo menos esa es mi forma pero si encuentran otra me ayudan por favir
con urgencia