-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservidor24.php
81 lines (64 loc) · 2.55 KB
/
servidor24.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
<?php
require "conexion.php";
if (isset($_GET['personas'])){
$personas = $_GET['personas'];
}else{
$personas="";
}
if (isset($_GET['usuario_id_actualizado'])){
$usuario_id_actualizado = $_GET['usuario_id_actualizado'];
}else{
$usuario_id_actualizado="";
}
if (isset($_GET['nombre_actualizado'])){
$nombre_actualizado = $_GET['nombre_actualizado'];
}else{
$nombre_actualizado="";
}
if (isset($_GET['usuario_id_eliminado'])){
$usuario_id_eliminado = $_GET['usuario_id_eliminado'];
}else{
$usuario_id_eliminado="";
}
$nombre_id = "nombre_id";
$correo_id = "correo_id";
$actualizar = "actualizar";
$borrar = "borrar";
if ($personas === "personas") {
$resultado = mysqli_query($conexion, "SELECT * FROM personas;");
$table = "";
$table .= '<table class = "table table-striped table-bordered">';
$table .= '<tr>';
$table .= '<th>#</th>';
$table .= '<th>Nombre</th>';
$table .= '<th>Correo</th>';
$table .= '<th>Editar Usuario</th>';
$table .= '<th>Borrar Usuario</th>';
$table .= '</tr>';
while ($fila = mysqli_fetch_assoc($resultado)) {
$table .= '<tr>';
$table .= '<td>'.$fila['id'].'</td>';
$table .= '<td id="'.$nombre_id.$fila['id'].'">'.$fila['nombre'].'</td>';
$table .= '<td id="'.$correo_id.$fila['id'].'">'.$fila['correo'].'</td>';
$table .= '<td ><input id="'.$fila['id'].'" onclick = "editar_usuario(this.id)" type = "button" value = "Editar" class = "btn btn-default"></td>';
$table .= '<td ><input id="'.$borrar.$fila['id'].'" onclick="borrar_usuario('.$fila['id'].')" type = "button" value = "Borrar" class = "btn btn-danger"></td>';
$table .= '<td ><input id="'.$actualizar.$fila['id'].'" onclick="actualizar_usuario('.$fila['id'].')" type = "button" value = "Actualizar" class = "btn btn-primary" style="display: none;"></td>';
$table .= '</tr>';
}
$table .= '</table>';
$table .= '<button onclick="ejecutarnuevaventana()"" class="btn btn-primary">Agregar Usuario</button>';
echo $table;
mysqli_close($conexion);
}
if (!empty($usuario_id_actualizado)&&!empty($nombre_actualizado)){
$cliente = mysqli_real_escape_string($conexion, $nombre_actualizado);
$query = "UPDATE personas SET nombre = '$cliente' WHERE id = $usuario_id_actualizado;";
$resultado = mysqli_query($conexion, $query);
mysqli_close($conexion);
}
if (!empty($usuario_id_eliminado)) {
$query = "DELETE FROM personas WHERE id = $usuario_id_eliminado;";
$resultado = mysqli_query($conexion, $query);
mysqli_close($conexion);
}
?>