-
Notifications
You must be signed in to change notification settings - Fork 2
/
Formulario_Insertar_Registros.php
54 lines (43 loc) · 1.44 KB
/
Formulario_Insertar_Registros.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
<style>
table{
background-color:#FFC;
border:1px solid #FF0000;
margin:auto;
padding:25px;
}
h1{
width:50%;
margin:25px auto;
text-align:center;
margin-bottom:50px;
}
body{
background-color:#FC9;
}
#boton{
padding-top:25px;
}
</style>
</head>
<body>
<h1> Alta de artículos nuevos</h1>
<form action="resultados_insertar_registros.php" method="get">
<table>
<tr><td>
<label>Código Artículo:</label></td><td> <input type="text" name="c_art"></td></tr>
<tr><td><label>Sección:</label></td><td><input type="text" name="secc"></td></tr>
<tr><td> <label>Nombre Artículo:</label> </td><td><input type="text" name="n_art"></td></tr>
<tr><td> <label>Precio: </label></td><td><input type="text" name="pre"></td></tr>
<tr><td> <label>Fecha: </label></td><td><input type="text" name="fec"></td></tr>
<tr><td> <label>Importado:</label> </td><td><input type="text" name="imp"></td></tr>
<tr><td> <label>País de Origen: </label></td><td><input type="text" name="p_ori"></td></tr>
<tr><td colspan="2" align="center" id="boton"> <input type="submit" name="enviando" value="¡Dale!"></td></tr>
</table>
</form>
</body>
</html>