$consulta = 'select cod_edificio, desc_edificio from agenda.edificios where cod_edificio <> 13 order by desc_edificio';
$dbh = $db->prepare($consulta);
$res = $db->execute($dbh);
+ if (PEAR::isError($res)) {
+ return $res;
+ }
while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
$rta[$re['cod_edificio']] = $re['desc_edificio'];
}
edificios.cod_edificio=internos.cod_edif ';
$sql.=($this->_interno) ? ' AND interno = '.$this->_interno:'';
- $sql.=($this->_codep) ? ' AND internos.codep = '.$this->_codep:'';
+ $sql.=($this->_codep) ? ' AND internos.codep =
+ \''.$this->_codep.'\'':'';
$sql.=($this->_edificio) ? ' AND internos.cod_edif = '.$this->_edificio:'';
$sql.=($this->_piso) ? ' AND piso = '.$this->_piso:'';
$sql.=($this->_oficina) ? ' AND oficina = '.$this->_oficina:'';
}
}
if ($this->_dependencia && $this->_dependencia != '--Ingrese una palabra clave--') {
- $dep = split('/ /',$this->_dependencia);
+ $dep = split(' ', $this->_dependencia);
foreach ($dep as $d) {
+ $d = trim($d);
$sql.= " AND dependencia LIKE '%$d%'";
}
}
$sql.=($this->_ordenar) ? ' order by '.$this->_ordenar :'';
-
+
$dbh = $this->_db->prepare($sql);
$res = $this->_db->execute($dbh);