2011-04-04 15:16:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
if(!$_SESSION["oid"]){
|
|
|
|
|
header("Location: aplicacion.php?e=permiso");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$prioridad = stripinput($_POST["prioridad"]);
|
|
|
|
|
$nombre = stripinput($_POST["nombre"]);
|
|
|
|
|
$fecha = stripinput($_POST["fecha"]);
|
|
|
|
|
$cliente = stripinput($_POST["clientes"]);
|
2011-04-06 16:50:55 +00:00
|
|
|
$perfil = $_POST["perfil"];
|
2011-04-04 15:16:10 +00:00
|
|
|
$duracion = stripinput($_POST["duracion"]);
|
|
|
|
|
$empleados = stripinput($_POST["empleados"]);
|
|
|
|
|
$observaciones = stripinput($_POST["observaciones"]);
|
|
|
|
|
$gerente = stripinput($_POST["gerente"]);
|
|
|
|
|
$salario_min = stripinput($_POST["salario_min"]);
|
|
|
|
|
$salario_max = stripinput($_POST["salario_max"]);
|
|
|
|
|
$estado = stripinput($_POST["estado"]);
|
|
|
|
|
$procedencia = stripinput($_POST["procedencia"]);
|
|
|
|
|
$tecnologia = $_POST["tecnologia"];
|
|
|
|
|
$idiomas = $_POST["idiomas"];
|
|
|
|
|
$localidades = $_POST["localidades"];
|
|
|
|
|
$provincias = $_POST["provincias"];
|
|
|
|
|
$activo = $_POST["activo"];
|
|
|
|
|
?>
|