Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active July 25, 2019 03:47
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/9e1c64df9412126c456ea0e0f15e5de5 to your computer and use it in GitHub Desktop.
Save parzibyte/9e1c64df9412126c456ea0e0f15e5de5 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Checkbox PHP</title>
</head>
<body>
<form action="procesar.php" method="post">
<input type="text" name="nombre" placeholder="Tu nombre">
<br><br>
<label for="terminos_condiciones">
<input id="terminos_condiciones" type="checkbox" name="terminos_condiciones"/>
Acepto los términos y condiciones
</label>
<br><br>
<input type="submit"/>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment