-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditarInversor.php
25 lines (21 loc) · 1.05 KB
/
editarInversor.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Respuesta de Sistema</title>
</head>
<body>
<?php
include 'conexion.php';
if ($conexion)
{
$query = 'UPDATE inversores SET Nombre="'. strtoupper($_POST['txtNombre']).'", Sexo='.$_POST['cmbSexo'].', Nacimiento="'.$_POST['txtFNacimiento'].'", Domicilio="'. $_POST['txtDomicilio'].'", Correo="'. $_POST['txtCorreo'].'", Telefono="'. $_POST['txtTelefono']. '", Lugar_Nac="'. $_POST['txtLugarNac'].'", Entero_bdt="'. $_POST['txtEntero'].'", nombreFB="'. $_POST['txtFB']. '", Ingreso_bdt="'. $_POST['txtIngreso'] . '", Codigo_bdt="'. $_POST['txtCodigo'].'", Colonia="'. $_POST['txtColonia'].'", CP="'. $_POST['txtCP'].'", Ciudad="'. $_POST['txtCiudad'].'" WHERE id="'. $_POST['id'].'"';
//echo $query;
if(!mysql_query($query,$conexion))
die(mysql_error());
echo "Inversor editado exitosamente<br /><a href ='usuario_perfil.php'>Volver</a>";
} else {
echo $mensaje;
}
?>
</body>
</html>