Prueba asi a ver si te imprime los valores:
Código PHP:
<?
include("config.php"); // Que informacion tiene este script?
$conexion = mysql_connect(lXXX,XXX,XXXX) or die (mysql_error());
mysql_select_db("Tubasededatos");
$result = mysql_query("select * from mp3", $conexion) or die(mysql_error());
//Mostramos los registros
while ($row = mysql_fetch_array($result)) // Aqui tenias un ; que es incorrecto
{
echo $row["mp3"];
echo $row["fecha"];
echo $row["autor"];
echo $row["url"];
echo 'Titulo:<b> $row[mp3]</b> <br>
<a href="$row[url]">Escuchar</a> - <a href="descargar.php?f=$row[url]">Descargar</a><br>
Subido por $row[autor]; | Fecha: $row[fecha]';
}
?>
Saludos.