Ver Mensaje Individual
  #8 (permalink)  
Antiguo 07/03/2008, 09:16
Avatar de Carlojas
Carlojas
 
Fecha de Ingreso: junio-2007
Ubicación: Shikasta
Mensajes: 1.272
Antigüedad: 17 años, 5 meses
Puntos: 49
Re: no muestra resultados db

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.