-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformularioUpdate.php
More file actions
executable file
·36 lines (34 loc) · 1.01 KB
/
formularioUpdate.php
File metadata and controls
executable file
·36 lines (34 loc) · 1.01 KB
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
<?php include 'scripts/formScriptUpdate.php';?>
<form name="frm" method="post" action="connection/update.php">
<table>
<tr>
<th>ID</th>
<td><input type="text" name="user_id" id="user_id"></td>
</tr>
<tr>
<th>Nome</th>
<td><input type="text" name="name" id="name"></td>
</tr>
<tr>
<tr>
<th>E-mail</th>
<td><input type="text" name="email" id="email"></td>
</tr>
<tr>
<tr>
<th>Senha</th>
<td><input type="password" name="password" id="senha"></td>
</tr>
<tr>
<th>Confirmar senha</th>
<td><input type="password" name="confirmarSenha" id="confirmarSenha" ></td>
</tr>
<th>Sexo:</th>
<td>
<input type="radio" name="sexo" value="masculino" checked="checked">Masculino
<input type="radio" name="sexo" value="feminino">Feminino
</td>
<td colspan="2"><input type="submit" value="Atualizar" onclick="checkValue()"></td>
</tr>
</table>
</form>