Ver Mensaje Individual
  #8 (permalink)  
Antiguo 09/02/2006, 16:07
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Cita:
Iniciado por plus_ultra
no le encuentro sentido, $parti no es una array.
jaja, cierto.

Bastaría con tener:

Código PHP:
<?php 
    
include("conexion.php");
    
$SQLbus  "SELECT * FROM actividad order by hora";
    
$SQLen pg_query($IdConexion,$SQLbus);

      while(
$row pg_fetch_array($SQLen)) 
      {
            if(
$row["participantes"]==$usuario)
            {
                
$compro[]=$row["idactividad"];
            }
        }
    }  
?>