FORMULARIOS
FORMULARIOS El formulario: <form> < form action = "ejemplo.php" method = "get" > Un formulario es un conjunto de controles (botones, cajas de texto, casillas de verificación, botones radio, etc) que permiten al usuario introducir datos y enviarlos al servidor web para su procesamiento. < p > Nombre: < input type = "text" name = "nombre" size = "40" > </ p > < p > Año de nacimiento: < input type = "number" name = "nacido" min = "1900" > </ p > < p > Sexo: < input type = "radio" name = "hm" value = "h" > Hombre < input type = "radio" name = "hm" value = "m" > Mujer </ p > < p > < input type = "submit" value = "Enviar" > < input type = "reset" value = "Borrar" ...