'".$_REQUEST['db_fecha']."' and tipo<=".$_REQUEST['db_tipo']." $whereUsuario ORDER BY iderror DESC"; $resultDatos = $conexion->getAll($select,null,DB_FETCHMODE_ASSOC); } $htmlResult = ''; $htmlResult.= ''; $htmlResult.= 'Debugger de Igep'; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ""; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; //Para meter los parámetros de la consulta $htmlResult.= ""; $htmlResult.= '
'; $htmlResult.= ' '; $htmlResult.= '
'; $htmlResult.= '

DEBUGGER IGEP

'; $htmlResult.= '
'; $htmlResult.= ' '; $htmlResult.= '
'; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= '
'; $htmlResult.= 'Criterios de filtrado'; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= '
'; $htmlResult.= 'Usuario: '; $htmlResult.= ''; $htmlResult.= 'Fecha: '; $htmlResult.= ''; $htmlResult.= 'Tipo: '; $htmlResult.= ''; $htmlResult.= 'Aplicación: '; $htmlResult.= '
'; $htmlResult.= ''; $htmlResult.= '
'; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; //Iteramos para mostrar los resultados if(count($resultDatos)==0){ $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; } else{ foreach($resultDatos as $indice=>$tupla){ $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; $htmlResult.= ''; } } $htmlResult.= '
'; $htmlResult.= 'Nº'; $htmlResult.= ''; $htmlResult.= 'FECHA'; $htmlResult.= ''; $htmlResult.= 'TIPO'; $htmlResult.= ''; $htmlResult.= 'MENSAJE'; $htmlResult.= '
'; $htmlResult.= 'NO HAY DATOS'; $htmlResult.= '
'; $htmlResult.= ($indice+1); $htmlResult.= ''; $htmlResult.= $tupla['fecha']; $htmlResult.= ''; switch($tupla['tipo']){ case 0: $htmlResult.= 'PANIC'; break; case 1: $htmlResult.= 'ERROR'; break; case 2: $htmlResult.= 'WARNING'; break; case 3: $htmlResult.= 'NOTICE'; break; case 4: $htmlResult.= 'DEBUG_USER'; break; case 5: $htmlResult.= 'DEBUG_IGEP'; break; } $htmlResult.= ''; $htmlResult.= $tupla['mensaje']; $htmlResult.= '
'; $htmlResult.= ''; $htmlResult.= ''; echo $htmlResult; ?>