Exemple #1
0
 public function listaDocumentoIdentidad($c_cod_per)
 {
     $o_Lpersona = new LPersona();
     $arrayFilas = $o_Lpersona->listaDocumentoIdentidad($c_cod_per);
     $arrayCabecera = array('0' => '', '1' => '', '2' => '');
     $o_Tabla = new Tabla($arrayCabecera, $arrayCabecera, 'fila1', 'fila2', 'filaEncima', 'filaCabecera', 0);
     $tablaHTML = $o_Tabla->getTabla();
     $row_ini = "<table border='0' cellpadding='0' cellspacing='0' width='100%'>";
     $row_fin = "</table";
     return $row_ini . $tablaHTML . $row_fin;
 }