-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·32 lines (28 loc) · 890 Bytes
/
index.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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Formularios</title>
</head>
<body>
<h1>Formulario</h1>
<form action="subir_archivos.php" method="POST" enctype="multipart/form-data">
<label for="valor1">Nombre:</label>
<p><input type="text" name="valor1" autofocus="autofocus" /></p>
<label for="valor2">Apellido:</label>
<p><input type="text" name="valor2" /></p>
<textarea name="valor3"></textarea>
<p><label for="valores">Valores</label></p>
<select name="valores">
<option value="v1">v1</option>
<option value="v2">v2</option>
<option value="v3">v3</option>
</select>
<p><label for="archivo">Archivo </label>
<input type="file" name="archivo"/></p>
<p><input type="submit" /></p>
</form>
</body>
</html>
<?php
?>