-
Notifications
You must be signed in to change notification settings - Fork 0
/
actualizar_usuario_en.php
86 lines (71 loc) · 3.12 KB
/
actualizar_usuario_en.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
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Update users</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Sistemas computacionales">
<meta name="keywords" content="MySql, conexión, Wamp">
<meta name="author" content="Ramirez Erik, Sistemas">
<link rel="stylesheet" href="css/estilos.css">
<link rel="stylesheet" href="css/menu.css">
<?php include("php/conexion.php"); ?>
</head>
<body>
<div id="container">
<div id="header">
<h1>Update users</h1>
<?php include('php/menu_en.php'); ?>
</div>
<div id="content">
<div id="section">
<h1>Shows data insertion</h1>
<?php
//obtener las variables
$id = $_POST['txt_id'];
$nombre = $_POST['txt_Nombre'];
$apPat = $_POST['txt_ApPat'];
$apMat = $_POST['txt_ApMat'];
$edad = $_POST['txt_Edad'];
$sexo = $_POST['lst_sexo'];
?>
<h2>Data received</h2>
<p>You entered the following data:</p>
<?php
//mostrar los datos recibidos
echo "<h3>$nombre</h3>
<h3>$apPat</h3>
<h3>$apMat</h3>
<h3>$edad</h3>
<h3>$sexo</h3>";
//realizar la inserción de datos en la tabla con la siguiente sentencia SQL
//insert into t_usuario values( "NULL" , "" , "" , "" , , "" )
//considere que la insercion de la primary Key es nula ya que es autoincrmentable
$campos = "usu_nombre = '$nombre'";
$campos .= ", usu_ap_pat = '$apPat'";
$campos .= ", usu_ap_mat = '$apMat'";
$campos .= ", usu_edad = $edad";
$campos .= ", usu_sexo = '$sexo'";
echo $campos;
$where = "id_usuarios = $id";
$cons = update('usuarios', $campos, $where);
if ($cons) {
?>
<h2>The news was CORRECTLY ADDED to the database.</h2>
<?php
} else {
?>
<h2>The news could not be inserted into the database.</h2>
<?php
}
?>
<meta http-equiv="refresh" content="3;URL=index.php">
</div>
</div>
<!-- footer ******************** -->
<?php include("php/footer.php"); ?>
</div>
</body>
</html>