Incam_Intranet/info_alarma.php

21 lines
399 B
PHP
Raw Normal View History

<?php
include("seguridad.php");
include("functions.php");
if(!$_SESSION["oid"]){
header("Location: aplicacion.php?e=permiso");
}
$nombre = stripinput($_POST["nombre"]);
$mensaje = stripinput($_POST["mensaje"]);
$prioridad = stripinput($_POST["prioridad"]);
$global = stripinput($_POST["global"]);
echo "<p class=$prioridad>$nombre</p>";
echo "<p>$mensaje</p>";
exit();
?>