forked from alexisadrianahp/prueba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistrar.php
25 lines (22 loc) · 852 Bytes
/
registrar.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
<?php
//LO QUE HACE ES AGREGAR USUARIOS!!
//print_r($_POST);
if(empty($_POST["oculto"]) || empty($_POST['txtNombre']) || empty($_POST['txtUsuario']) ||
empty($_POST['txtContrasena']) || empty($_POST['txtPuesto'])){
header('Location: index.php?mensaje=falta');
exit();
}
include 'model/conexion.php';
$nombre = $_POST["txtNombre"];
$usuario = $_POST["txtUsuario"];
$contrasena = $_POST["txtContrasena"];
$puesto = $_POST["txtPuesto"];
$sentencia = $bd->prepare("INSERT INTO usuarios(name, user_name,password, puesto) VALUES (?,?,?,?)");
$resultado = $sentencia->execute([$nombre, $usuario, $contrasena, $puesto]);
if($resultado === true){
header('Location: index.php?mensaje=registrado');
}else{
header('Location: index.php?mensaje=error');
exit();
}
?>