-
Notifications
You must be signed in to change notification settings - Fork 0
/
ing_vr.php
57 lines (40 loc) · 810 Bytes
/
ing_vr.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
<?php
//cargando clase de BD
require 'lib_conf/bd_conf.php';
$database = new medoo();
//fin de uso de BD
$pParam = FALSE;
if(count($_GET) != 0){
$pParam = $_GET;
}elseif(count($_POST) != 0){
$pParam = $_POST;
}
if($pParam != FALSE){
$sVR = $pParam['vr'];
if(
($sVR == '')
){
$sMensaje =
'El nombre y la descripción '.
'del nuevo rol no pueden '.
'ser cadenas vacías.';
echo($sMensaje);
}else{
$database->insert("VRectoria", ["VRNombre" => $sVR]);
echo $sVR . " creada ";
}
}
?>
<html>
<head>
<title>Ingresar nuevo Vice Rectoria</title>
</head>
<body>
<form name="vicerectoria" method="post">
<strong>Nombre de la VR:</strong><br>
<input type="text" name="vr">
<br/>
<input type="submit" value="Guardar">
</form>
</body>
</html>