Foros aprenderaprogramar.com
Aprender a programar => C, C++, C#, Java, Visual Basic, HTML, PHP, CSS, Javascript, Ajax, Joomla, MySql y más => Mensaje iniciado por: Mastermind en 05 de Agosto 2015, 18:34
-
Posible código propuesto como solución al ejercicio CU00725B del tutorial HTML de programación web de aprenderaprogramar:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>HTML- Seleccionar archivo en formularios</title>
</head>
<body>
<h1>Inscripcion al concurso Jara y Sedal</h1>
<form method="post" action="http://aprenderaprogramar.com" enctype="multipart/form-data">
Nombre: <input name="nombre" type="text" value="name" /><br/><br/>
Apellidos: <input name="apell" type="text" value="apell" /><br/><br/>
Dirección: <input name="direc" type="text" value="direc" /><br/><br/>
Fotografia: <input name="img" type="file" /><br/><br/>
<input type="submit" value="<<¡¡Me apunto!!>>" /><input type="reset" value="<<Cancelar>>" /><br/><br/>
</form>
</body>
</html>