Viewing file: aviso.php (1.86 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include('setup_administracion.php');
if ($tipo == 0) {
$msg_pht = "warning.gif";
$msg_pro = "Aviso:";
$msg_align = "center";
}
if ($tipo == 1) {
$msg_pht = "ok.gif";
$msg_pro = "Ok,";
$msg_align = "center";
}
if ($tipo == 2) {
$msg_pht = "help.gif";
$msg_pro = "Ayuda Portel<br><br>";
$msg_align = "left";
include('../clases_herramientas/include_acciones.php');
$cuando = "aplicacion_ayuda_idapp = '$idapp' and aplicacion_ayuda_accion = '16'";
$donde = " administracion_aplicacion_ayuda ";
// 1.Búsqueda de la ayuda
$vinculo_pg = "";
$inicio_1 = 0;
$control_hlp = new select_pg(1, "aplicacion_ayuda_nombre, aplicacion_ayuda_texto", $donde, $cuando, 2, 5, "(nombre)-(texto)", "", $vinculo_pg ,$inicio_1);
// 2. Extracción del mensaje.
//echo $control_hlp->RESULTADOS;
$msg = $control_hlp->RESULTADOS[0][0] . "<br><br>" . $control_hlp->RESULTADOS[0][1];
//echo $msg;
//echo $control_hlp->NUMERO_REGISTROS;
}
?>
<style type="text/css">
<!--
.Estilo3 {font-size: 12px}
body {
background-color: #eeeeee;
margin-top: 0px;
}
-->
</style>
<link href="<?php echo $archivo_css; ?>" rel="stylesheet" type="text/css">
<table width="100%" border="0" cellspacing="0" cellpadding="8" class="texto">
<tr>
<td width="60%"><table width="100%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="19%" valign="top"><img src="../imagenes/<?php echo $msg_pht; ?>" width="97" height="85"></td>
<td width="81%" align="<?php echo $msg_align; ?>"><span class="Estilo3"><strong><?php echo $msg_pro; ?></strong> <?php echo $msg; ?></span></td>
</tr>
</table></td>
</tr>
<tr>
<td width="60%" align="center"><form>
<input type=button value="Cerrar Mensaje" onClick="javascript:window.close();">
</form> </td>
</tr>
</table>
|