Ejemplo de uso del método POST en el atributo method de un formulario HTML
Ejemplo explicado en el apartado "Formularios" del tutorial de HTML.
"metodo-post-en-atributo-method.html"
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="utf-8">
<title>Ejemplo método POST en el atributo method</title>
</head>
<body>
<form action="procesar-datos.php" method="post">
Nombre de usuario:
<br>
<input type="text" name="usuario">
<br>
Contraseña:
<br>
<input type="password" name="clave">
<br><br>
<input type="submit" value="Enviar datos">
</form>
</body>
</html>