-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmEditar.php
153 lines (140 loc) · 4.77 KB
/
frmEditar.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php include 'conexion.php'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Nuevo Inversor de Tiempo</title>
</head>
<link href="menu.css" rel="stylesheet" type="text/css">
<script language="javascript">
function seleccionaCmb( id )
{
var cmbServicio = document.form1.cmbSexo;
cmbServicio.options[id].selected = true;
}
</script>
<body>
<table width="729" border="0">
<tr>
<td width="200"> </td>
<td width="482"><div align="center"><img src="header.png" width="318" height="154" /></div></td>
</tr>
<tr>
<td>
<div id="menu">
<dl>
<dt><a href="index.htm" title="Inicio">Home</a></dt>
<dt><a href="listaProfile.php" title="Ver lista de inversores">Inversores</a></dt>
<dt><a href="frmNuevo.php" title="Agrega un inversor">Nuevo Inversor</a></dt>
<dt><a href="usuario_perfil.php" title="Perfil">Perfil de usuario</a></dt>
<dt><a href="index.htm" title="Aplicación BdT 1.0 beta">Acerca de</a></dt>
</dl>
</div></td>
<?php if ($conexion) { ?>
<?
if($_GET != NULL)
{
$queEmp = "SELECT * FROM inversores WHERE id = '". $_GET["id"]. "'";
$resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
$rowEmp = mysql_fetch_assoc($resEmp);
}
?>
<td><form id="form1" name="form1" method="post" action="editarInversor.php">
<p>Datos del nuevo inversor:</p>
<table width="534" border="1">
<tr>
<td width="203">Nombres y apellidos
<label>
<? echo '<input name="id" type="hidden" value='. $rowEmp["id"].'>' ?>
<? echo '<input type="text" name="txtNombre" id="txtNombre" value="'. $rowEmp["Nombre"].'"/>'; ?>
</label></td>
<td width="119">Sexo:
<label>
<select name="cmbSexo" id="cmbSexo">
<option value="0" >Femenino</option>
<option value="1">Masculino</option>
</select>
<script>
var env = '<? echo $rowEmp["Sexo"];?>';
seleccionaCmb(env);
</script>
</label>
<label></label></td>
<td width="170">Lugar
<label> nacimiento:
<? echo '<input type="text" name="txtLugarNac" id="txtLugarNac" value="'.$rowEmp["Lugar_Nac"].'"/>';?>
</label>
<label> </label></td>
</tr>
<tr>
<td>Fecha Nacimiento:
<label>
<? echo '<input type="text" name="txtFNacimiento" id="txtFNacimiento" value="'.$rowEmp["Nacimiento"].'"/>';?>
</label></td>
<td><label>Teléfono de contacto:
<? echo '<input type="text" name="txtTelefono" id="txtTelefono" value="'.$rowEmp["Telefono"].'"/>';?>
</label></td>
<td>Correo:
<label>
<? echo '<input type="text" name="txtCorreo" id="txtCorreo" value="'.$rowEmp["Correo"].'"/>';?>
</label></td>
</tr>
<tr>
<td>Domicilio:
<label>
<? echo '<input type="text" name="txtDomicilio" id="txtDomicilio" value="'.$rowEmp["Domicilio"].'" />'; ?>
</label></td>
<td>Colonia:
<? echo '<input type="text" name="txtColonia" id="txtColonia" value="'.$rowEmp["Colonia"].'"/>';?></td>
<td>Código Postal:
<? echo '<input type="text" name="txtCP" id="txtCP" value='.$rowEmp["CP"].'>';?></td>
</tr>
<tr>
<td>¿Cómo se enteró del BdT?
<label>
<? echo '<input type="text" name="txtEntero" id="txtEntero" value="'. $rowEmp["Entero_bdt"].'"/>';?>
</label></td>
<td>Nombre de facebook
<label>
<? echo '<input type="text" name="txtFB" id="txtFB" value="'.$rowEmp["nombreFB"].'"/>';?>
</label></td>
</tr>
<tr>
<td>Fecha de ingreso al BdT:
<label>
<? echo '<input type="text" name="txtIngreso" id="txtIngreso" value="'.$rowEmp["Ingreso_bdt"].'"/>';?>
</label></td>
<?
if($_GET != NULL)
{
echo '<td> Codigo ingreso
<input type="text" name="txtCodigo" value="'.$rowEmp["Codigo_bdt"].'"/>
</td>';
}
?>
<td>Ciudad:
<?
$queEmp = "SELECT * FROM municipios WHERE estado = '1' ORDER BY nombre_municipio ASC";
$resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
echo '<select name="txtCiudad" id="txtCiudad">';
while($rowEmp = mysql_fetch_assoc($resEmp))
echo'<option>'. $rowEmp["nombre_municipio"]. '</option>';
echo'</select>';
?></td>
</tr>
</table>
<p>
<label>
<input type="submit" name="cmdEnviar" id="cmdEnviar" value="Guardar" />
</label>
</p>
</form></td>
</tr>
<?php
} else {
echo $mensaje;
}
?>
</table>
</body>
</html>