Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 23, 2019 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/e7ef31b1c2c85f9884d33c6fcc106551 to your computer and use it in GitHub Desktop.
Save parzibyte/e7ef31b1c2c85f9884d33c6fcc106551 to your computer and use it in GitHub Desktop.
Formulario con dos botones en PHP https://parzibyte.me/blog
<html>
<head>
<title>Formulario con múltiples botones</title>
</head>
<body>
<a href="//parzibyte.me/blog">By Parzibyte</a>
<br><br>
<form method="post" action="procesar.php">
<input type="text" name="nombre" placeholder="Tu nombre">
<br><br>
<button type="submit" name="boton" value="a">Opción A</button>
<button type="submit" name="boton" value="b">Opción B</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment