예제 #1
0
파일: faxada.class.php 프로젝트: hexti/adv
 function listar($tabela, $campos, $where = null, $query = null)
 {
     $DAO = new GenericoDAO();
     $resultado = $DAO->Listar($tabela, $campos, $where, $query);
     return $resultado->fetchAll();
 }