Created
January 5, 2015 19:59
-
-
Save ricardosiri68/8062cb34c63d0c9643b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
| <title>form</title> | |
| </head> | |
| <body> | |
| <form action="send.php" method="POST"> | |
| <div class="producto"> | |
| <input type="" name="producto[0][nombre]"> | |
| <input type="" name="producto[0][cantidad]"> | |
| <select id="" name="producto[0][tipo]"> | |
| <option value="kg">Kg.</option> | |
| <option value="lt">Lt.</option> | |
| <option value="otro">Otro</option> | |
| </select> | |
| </div> | |
| <div class="producto"> | |
| <input type="" name="producto[1]['nombre']"> | |
| <input type="" name="producto[1]['cantidad']"> | |
| <select id="" name="producto[1]['tipo']"> | |
| <option value="kg">Kg.</option> | |
| <option value="lt">Lt.</option> | |
| <option value="otro">Otro</option> | |
| </select> | |
| </div> | |
| <input type="submit" value="Enviar"> | |
| </form> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php var_dump($_POST['producto'][0] ) ?> | |
| <?php var_dump($_POST['producto'][1] ) ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment