git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk/src@1 e2b1556b-49f8-d141-9351-52d6861a72d9
21 lines
399 B
PHP
21 lines
399 B
PHP
<?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();
|
|
|
|
?>
|