//aqui detectamos que hemos pulsado al boton 'Consultar' //por lo que cojemos los parametros de los filtros, hacemos la consulta y la presentamos if (isset($_GET['cmdListar']) && $_GET['cmdListar'] == 'OK') { require_once '../CN/clsCNUsu.php'; $clsCNUsu = new clsCNUsu(); $clsCNUsu->setStrBD($_SESSION['mapeo']); $Nombre = ""; $Apellidos = ""; if ($_GET['strNombre'] != '') { $Nombre = $_GET['strNombre']; } if ($_GET['strApellidos'] != '') { $Apellidos = $_GET['strApellidos']; } logger('info', 'usulistvisibility.php-', "Usuario: " . $_SESSION['strUsuario'] . ', Empresa: ' . $_SESSION['base'] . ', SesionID: ' . session_id() . '-Entra clsCNRecl->Listado(' . $_SESSION['strUsuario'] . ',' . $Nombre . ',' . $Apellidos . ')'); $arResult = $clsCNUsu->Listado($_SESSION['strUsuario'], $Nombre, $Apellidos); ?> <h3 align="center" color="#FFCC66"><font size="3px">Comentarios</font></h3> <table id="datatablesMod" class="display"> <thead> <tr> <th>Nº</th> <th>Nombre</th> <th>Apellidos</th> <th>Descripcion</th> <th>Cargo</th> </tr> </thead> <tbody> <?php