Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/11/2012, 12:35
rolygc
 
Fecha de Ingreso: abril-2009
Ubicación: en un lugar de la mancha
Mensajes: 236
Antigüedad: 15 años
Puntos: 38
Respuesta: Proeblema con funcion conectar

Código PHP:
public function executeQuery($query)
    {
    
$result $this->conConnection->query($query);
        
        if(
$result->num_rows 0
        {
                
$datos = array();

        while(
$row $result->fetch_assoc()) 
                {
            
$datos[] = stripslashes($row);    
        }
    }     
    }