source: admin/WebConsole/varios/msgbrowser.php @ d1abd62

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since d1abd62 was b0bb14f, checked in by alonso <alonso@…>, 16 years ago

git-svn-id: https://opengnsys.es/svn/trunk@617 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[b0bb14f]1<?
2// *************************************************************************
3// Aplicación WEB: ogAdmWebCon
4// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
5// Fecha Creación: Año 2003-2004
6// Fecha útima modificación: Marzo-2006
7// Nombre del fichero: menubrowser.php
8// Descripción :
9//              Muestra menu en el browser del cliente
10// ****************************************************************************
11$idioma="esp"; // Por defecto idoma español
12include_once("../idiomas/php/".$idioma."/msgbrowser_".$idioma.".php");
13
14$msg="";
15if (isset($_GET["msg"])) $msg=$_GET["msg"];  // Recoge indice del mensaje
16
17if (isset($TbMsg[$msg]))
18        $mensaje=$TbMsg[$msg];
19else
20        $mensaje=$TbMsg[0]; // Mensaje erronéo
21?>
22<HTML>
23<TITLE>Administración web de aulas</TITLE>
24<HEAD>
25        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
26        <LINK rel="stylesheet" type="text/css" href="../estilos.css">
27        <SCRIPT language="javascript">
28
29        </SCRIPT>
30</HEAD>
31<BODY>
32        <BR><BR><BR>
33        <TABLE class="mensajebrowser" cellspacing=0 cellpadding=2 align=center border=0>
34                <TR>
35                        <TD align=center class="mensajebrowser">&nbsp;<? echo $mensaje?>&nbsp;</TD>
36                </TR>
37        </TABLE>
38</BODY>
39</HTML>
Note: See TracBrowser for help on using the repository browser.