-
Notifications
You must be signed in to change notification settings - Fork 0
/
upd_rol.php
67 lines (49 loc) · 1.02 KB
/
upd_rol.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
<?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){
$sNombre = $pParam['nombrol'];
$sNewNombre = $pParam['nnombre'];
if(
($sNombre == '') or
($sNewNombre == '')
){
$sMensaje =
'El nombre y la actualizacion '.
'del rol no pueden '.
'ser cadenas vacías.';
echo($sMensaje);
}else{
$database->update("roles", [
"nombrol" => $sNewNombre,
],[
"nombrol" => $sNombre
]);
echo "Rol: \"" . $sNombre . "\" fue actualizado con \"" . $sNewNombre . "\" ";
}
}
?>
<html>
<head>
<title>Actualizar nombre del rol</title>
</head>
<body>
<form name="roles" method="get">
<strong>Nombre Actual:</strong><br>
<input type="text" name="nombrol">
<br/>
<strong>Nobre Nuevo:</strong><br>
<input type="text" name="nnombre">
<br/>
<input type="submit" value="Guardar">
</form>
</body>
</html>