123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Multi input Test</title>
- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
- </head>
- <body>
- <h1>Multi input Test</h1>
- <form method="POST" action="advanced_form_post.php">
- <label>
- First
- <input type="text" name="tags[]" value="tag1">
- </label>
- <label>
- Second
- <input type="text" name="tags[]" value="tag2">
- </label>
- <label>
- Third
- <input type="text" name="tags[]" value="tag1">
- </label>
- <input type="submit" name="submit" value="Register" />
- </form>
- </body>
- </html>
|