-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiposmovimento-a.php
44 lines (44 loc) · 1.73 KB
/
tiposmovimento-a.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
<?php
include("tiposmovimento-c.php");
$TiposMovimento = selectIdTipoMov($_POST["idTipoMov"]);
?>
<html lang="pt-br">
<head>
<title>Alterar - Tipos de Movimento</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="./css/mystyle.css" />
</head>
<body>
<form name="dadosTiposMov" action="tiposmovimento-c.php" method="POST">
<table border="1">
<tbody>
<tr>
<td>Código:</td>
<td><input type="text" name="idTipoMov" value="<?=$TiposMovimento["idTipoMov"]?>" size="20" disabled="true" /></td>
</tr>
<tr>
<td>Descrição:</td>
<td><input type="text" name="descTipoMov" value="<?=$TiposMovimento["descTipoMov"]?>" onkeyup="this.value = this.value.toUpperCase();"/></td>
</tr>
<tr>
<td>Tipo Movimento: D-Débito C-Crédito</td>
<td>
<select name="tipoMovimento">
<option name="tipoMovimento" value="D">D</option>
<option name="tipoMovimento" value="C">C</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="hidden" name="acao" value="Alterar" />
<input type="hidden" name="idTipoMov" value="<?=$TiposMovimento["idTipoMov"]?>" />
</td>
<td><input type="submit" name="enviar" value="Alterar" /></td>
</tr>
</tbody>
</table>
</form>
<a href="index.html">Voltar ao início</a>
</body>
</html>