-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.php
29 lines (23 loc) · 861 Bytes
/
create.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php include_once 'config/init.php'; ?>
<?php
$job = new Job;
if(isset($_POST['aceptar'])){
//crear un array de datos
$data = array();
$data['titulo_empleo'] = $_POST['titulo_empleo'];
$data['empresa'] = $_POST['empresa'];
$data['categoria_id'] = $_POST['categoria'];
$data['descripcion'] = $_POST['descripcion'];
$data['lugar'] = $_POST['lugar'];
$data['salario'] = $_POST['salario'];
$data['contacto_usuario'] = $_POST['contacto_usuario'];
$data['contacto_email'] = $_POST['contacto_email'];
if($job->create($data)){
redirect('index.php', 'Tu empleo ha sido publicado.','exito');
} else {
redirect('index.php', 'Ha habido un problema al publicar tu empleo.','error');
}
}
$template = new Template('templates/job-create.php');
$template->categories = $job->getCategories();
echo $template;