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();
|
||
|
|
|
||
|
|
?>
|