-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistros_alum.php
83 lines (58 loc) · 1.84 KB
/
registros_alum.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
require 'metodos.php';
$conexion=conexion();
mysqli_query($conexion,"SET NAMES 'utf8'");
if ($_POST["solicito"]==="servicio") {
$mat=$_POST["matricula"];
$per=$_POST["periodo"];
$or=$_POST["orga"];
$fo1=$_POST["for1"];
$fo2=$_POST["for2"];
if ($mat==""||$per==""||$or==""||$fo1==""||$fo2=="") {
$sql="update serviciosocial set rec03='$fo1',periodo='$per',organismo='$or',ct='$fo2' where matricula='$mat'";
}else{
$sql="update serviciosocial set rec03='$fo1',periodo='$per',organismo='$or',ct='$fo2',liberacion=1 where matricula='$mat'";
$sql2="UPDATE liberacion SET serviciosocial='img/cheket.png' WHERE matricula='$mat' ";
if(mysqli_query($conexion,$sql2)){
}else{
echo "No liberacion";
}
}
if(mysqli_query($conexion,$sql)){
echo "El Proceso se registro correctamente";
}else{
echo "El proceso no se registro correctamente";
}
}
if ($_POST["solicito"]==="estancia1") {
$mat=$_POST["matricula"];
$per=$_POST["periodo"];
$or=$_POST["orga"];
$fo1=$_POST["for1"];
$fo2=$_POST["for2"];
$fo3=$_POST["for3"];
$fo4=$_POST["for4"];
echo actualizar($_POST["solicito"],$fo1,$per,$or,$fo2,$fo3,$fo4,$mat);
}
if ($_POST["solicito"]==="estancia2") {
$mat=$_POST["matricula"];
$per=$_POST["periodo"];
$or=$_POST["orga"];
$fo1=$_POST["for1"];
$fo2=$_POST["for2"];
$fo3=$_POST["for3"];
$fo4=$_POST["for4"];
echo actualizar($_POST["solicito"],$fo1,$per,$or,$fo2,$fo3,$fo4,$mat);
}
if ($_POST["solicito"]==="estadia") {
$mat=$_POST["matricula"];
$per=$_POST["periodo"];
$or=$_POST["orga"];
$fo1=$_POST["for1"];
$fo2=$_POST["for2"];
$fo3=$_POST["for3"];
$fo4=$_POST["for4"];
echo actualizar($_POST["solicito"],$fo1,$per,$or,$fo2,$fo3,$fo4,$mat);
}
mysqli_close($conexion);
?>