Tema: Sacar titulo
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 06/12/2007, 11:50
Sanubrio
 
Fecha de Ingreso: septiembre-2007
Mensajes: 220
Antigüedad: 16 años, 7 meses
Puntos: 1
Re: Sacar titulo

Código PHP:
$resultado mysql_query("SELECT nombre, posicion FROM jugador");

$posiciones = array();
while (
$fila mysql_fetch_array($resultado))
{
    
$posiciones[$fila['posicion']][] = $fila;