Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/06/2012, 16:57
Avatar de fjrueda
fjrueda
 
Fecha de Ingreso: marzo-2008
Ubicación: Bucaramanga
Mensajes: 313
Antigüedad: 16 años, 1 mes
Puntos: 35
Respuesta: Salida por array db

Intentlo asi :

Código PHP:
public function loadObjectList()
{
    if(!(
$cur $this->execute()))
    {   
         return 
null;   
    }
   
    
$estearray = array();   

    while(
$row = @mysql_fetch_object($cur))
    {
        
array_push($estearray$row);
    }   
        
    return 
$estearray;   

Me cuenta que resultado le da eso.

Última edición por fjrueda; 16/06/2012 a las 17:05