Ver Mensaje Individual
  #6 (permalink)  
Antiguo 15/07/2011, 13:49
Krlinhos
 
Fecha de Ingreso: diciembre-2009
Mensajes: 79
Antigüedad: 14 años, 11 meses
Puntos: 1
Respuesta: funcion row()

Hola Italico,

lo he solucionado así:

Código PHP:
public function get_registro($tabla,$registro,$campos=null)
    {
        (
is_null($campos))?'':'$query=$this->db->select($campos);';
        
$query $this->db->where($this->imareal->campoClave($tabla),$registro)->get($tabla);
        if(
$query->num_rows()>0)
        {
            return 
$query->row();    
        } 
        else
        {
            return 
false;
        }
    }