Viewing file: include_registro.php (2.07 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%" border="0" cellspacing="0" cellpadding="8" class="texto">
<tr>
<td width="100%">
<?php
if (isset($accion)) {
$cuando = "";
$donde = " administracion_registro ";
if ($aplicacion_id != 0) {
$cuando = $cuando . "aplicacion_id = $aplicacion_id and";
}
if ($contacto_id != "0") {
$cuando = $cuando . " contacto_user = '$contacto_id' and ";
}
if ($dia != "0" and $mes != "0" and $ano != "0") {
$fecha_rango_inicial = $ano . "-" . $mes . "-" . $dia . " 0:00:00";
$fecha_rango_final = $ano . "-" . $mes . "-" . $dia . " 23:59:59";
$cuando = $cuando . " registro_fecha >= '$fecha_rango_inicial' and registro_fecha <= '$fecha_rango_final' order by registro_id";
}else{
$cuando = $cuando . " registro_id != 0 order by registro_id";
}
if (isset($inicio_1)) {
}else{
$inicio_1 = 0;
}
// 1.Búsqueda sobre el registro
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\" class=\"texto\"><tr><td bgcolor=\"#DDDDDD\"><b>1. Registro</b></td><tr></table>";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"2\" class=\"texto\">";
$vinculo_pg = "1--administracion_registro.php" . "?aplicacion_id=" . $aplicacion_id . "&contacto_id=" . $contacto_id . "&dia=" . $dia . "&mes=" . $mes . "&ano=" . $ano . "&x_y=" . $x_y . "&user=" . $user . "&accion=bus_&";
$control = new select_pg(1, "registro_id, contacto_user, aplicacion_id, registro_id_afectado, registro_nombre_tabla, registro_accion, registro_fecha, registro_datos", $donde, $cuando, 8, 30, "(id)-(user)-(aplicacion)-(registro)-(tabla)-(accion)-(fecha)-(detalle)", "<tr><td>(id)</td><td>(user)</td><td>(aplicacion)</td><td>(registro)</td><td>(tabla)</td><td>(accion)</td><td>(fecha)</td><td><a href=\"#\"><img src=\"../imagenes/question.gif\" width=\"15\" height=\"15\" border=\"0\" alt=\"(detalle)\"></a></td></tr>", $vinculo_pg ,$inicio_1);
echo "</table>";
}
?>
</td>
</tr>
<tr bgcolor="#eeeeee">
<td> <p>Resultados Encontrados</p></td>
</tr>
</table>
|