-
Notifications
You must be signed in to change notification settings - Fork 0
/
registrarse.php
55 lines (48 loc) · 1.61 KB
/
registrarse.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
$Boleta=$_POST['Boleta'];
$CURP=$_POST['CURP'];
$Contraseña=$_POST['Contraseña'];
$CContra=$_POST['CContraseña'];
$Email=$_POST['Email'];
$Nombre=$_POST['Nombre'];
$apPaterno=$_POST['aPP'];
$apMaterno=$_POST['aPM'];
// Cuando no se han ingresado datos
if(empty($Boleta) || empty($CURP) || empty($Contraseña) || empty($CContra) || empty($Email) || empty($Nombre) || empty($apPaterno) || empty($apMaterno))
{
header("Location: registrarse.html");
exit();
}
include ("conexion.php");
$conexion=conectar();
if($conexion)
{
if($Contraseña==$CContra)
{
if(mysqli_query($conexion,"INSERT into usuario (pass,curp,tipo,email,nombre,apPaterno,apMaterno) values ('". $Contraseña . "','" . $CURP . "','E','" . $Email . "','" . $Nombre . "','" . $apPaterno . "','" . $apMaterno . "')"))
{
if(mysqli_query($conexion,"INSERT into estudiante (boleta,totalHora,idUsuario) values ('". $Boleta . "',0, (SELECT idUsuario FROM usuario where curp='" . $CURP . "') )"))
{
echo "<p><h1>La alta se ha realizado con exito</p>";
header("Location: sesion.html");
}
else
{
echo "<p> No se ha podido guardar al estudiante $Nombre</p>";
header("Location: registrarse.html");
}
}
else
{
echo "<p> Se ha producido un error para $Nombre</p>";
header("Location: registrarse.html");
}
}
else
{
echo "<p> Las contraseñas no coinciden</p>";
header("Location: registrarse.html");
}
}
mysqli_close($conexion);
?>