Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/09/2008, 11:14
tinoarauz
 
Fecha de Ingreso: abril-2007
Mensajes: 13
Antigüedad: 17 años, 10 meses
Puntos: 0
Respuesta: mostrar un registro de varios iguales ¿Como lo hago?

si , me funcion gracias pero lo hice asi

Código PHP:
<? // CONSULTA MP3
    
$mp3_lista=mysql_query("select distinct (artista) from mp3");                          
while(
$mp3_content=mysql_fetch_array($mp3_lista)) {
$artista=$mp3_content['artista'];
 echo 
"$artista <br>";} ?>